From 0b307248a69b8d0ef8ce6f1c9c3c93aa77794213 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 26 Apr 2014 10:09:35 -0700 Subject: [PATCH] Fix warning. --- format-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format-test.cc b/format-test.cc index 1438e470..817befe4 100644 --- a/format-test.cc +++ b/format-test.cc @@ -264,7 +264,7 @@ TEST(ArrayTest, MoveAssignment) { // Move should rip the guts of the first array. EXPECT_EQ(inline_buffer_ptr, &array[0]); EXPECT_EQ("testab", std::string(&array2[0], array2.size())); - EXPECT_GT(array2.capacity(), 5); + EXPECT_GT(array2.capacity(), 5u); } #endif // FMT_USE_RVALUE_REFERENCES