Skip to content

Commit 6ad7a31

Browse files
generatedunixname89002005287564facebook-github-bot
authored andcommitted
fbcode/cachelib/allocator/datastruct/serialize
Reviewed By: avalonalex Differential Revision: D43616310 fbshipit-source-id: 3367ad01ba31e5dc561d63a4f3b9746170e64912
1 parent 70ff91f commit 6ad7a31

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cachelib/allocator/datastruct/serialize/objects.thrift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ namespace cpp2 facebook.cachelib.serialization
2222

2323
// Saved state for an SList
2424
struct SListObject {
25-
2: required i64 size,
26-
3: required i64 compressedHead, // Pointer to the head element
25+
2: required i64 size;
26+
3: required i64 compressedHead; // Pointer to the head element
2727
// TODO(bwatling): remove the default value and clean up SList::SList() once
2828
// we can rely on 'compressedTail' always being valid.
29-
4: i64 compressedTail = -1, // Pointer to the tail element
29+
4: i64 compressedTail = -1; // Pointer to the tail element
3030
}
3131

3232
struct DListObject {
33-
1: required i64 compressedHead,
34-
2: required i64 compressedTail,
35-
3: required i64 size,
33+
1: required i64 compressedHead;
34+
2: required i64 compressedTail;
35+
3: required i64 size;
3636
}
3737

3838
struct MultiDListObject {

0 commit comments

Comments
 (0)