Fix unneeded semi column

This commit is contained in:
Guillaume Chatelet 2020-02-13 11:18:28 +01:00 committed by GitHub
parent 9d4c597541
commit 961aeb7a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ using I = intptr_t;
// Converts an offset into a pointer.
const void *forge(size_t offset) {
return reinterpret_cast<const void *>(offset);
};
}
TEST(UtilsTest, OffsetToNextAligned) {
EXPECT_EQ(offset_to_next_aligned<16>(forge(0)), I(0));