1
0
Fork 0

Fixed two compile errors.

This commit is contained in:
Dan Larkin 2017-02-24 17:12:32 -05:00
parent 290f6c182d
commit 84f284543c
2 changed files with 3 additions and 2 deletions

View File

@ -109,7 +109,7 @@ struct CachedValue {
};
// ensure that header size is what we expect
static_assert(sizeof(CachedValue) == 16);
static_assert(sizeof(CachedValue) == 16, "Expected sizeof(CachedValue) == 16.");
}; // end namespace cache
}; // end namespace arangodb

View File

@ -117,7 +117,8 @@ struct State {
};
// ensure that state is exactly the size of uint32_t
static_assert(sizeof(State) == sizeof(uint32_t));
static_assert(sizeof(State) == sizeof(uint32_t),
"Expected sizeof(State) == sizeof(uint32_t).");
}; // end namespace cache
}; // end namespace arangodb