Fix unneeded semi column
authorGuillaume Chatelet <gchatelet@google.com>
Thu, 13 Feb 2020 10:18:28 +0000 (11:18 +0100)
committerGitHub <noreply@github.com>
Thu, 13 Feb 2020 10:18:28 +0000 (11:18 +0100)
libc/test/src/string/memory_utils/utils_test.cpp

index c542092..5a14cb1 100644 (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));