Skip to content

Commit

Permalink
Fix NFData instance for SnapshotMetaData
Browse files Browse the repository at this point in the history
  • Loading branch information
wenkokke committed Dec 19, 2024
1 parent d68478f commit a5e8698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Database/LSMTree/Internal/Snapshot.hs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ data SnapshotMetaData = SnapshotMetaData {
deriving stock (Show, Eq)

instance NFData SnapshotMetaData where
rnf (SnapshotMetaData a b c d) = rnf a `seq` rnf b `seq` rnf c `seq` rnf d
rnf (SnapshotMetaData a b c d e) = rnf a `seq` rnf b `seq` rnf c `seq` rnf d `seq` rnf e

{-------------------------------------------------------------------------------
Levels snapshot format
Expand Down

0 comments on commit a5e8698

Please sign in to comment.