Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
Fix build error under gcc4.8 by cpp client (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
laura-ding authored Jun 29, 2021
1 parent c815e9e commit 7eaeb95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/datatypes/Value.h
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ struct Value {
void setG(DataSet&& v);
};

static_assert(sizeof(Value) == 16UL);
static_assert(sizeof(Value) == 16UL, "The size of Value should be 16UL");

void swap(Value& a, Value& b);

Expand Down

0 comments on commit 7eaeb95

Please sign in to comment.