Fix a -Wsign-compare in Support Path unittests

llvm-svn: 260418
This commit is contained in:
Reid Kleckner 2016-02-10 19:29:01 +00:00
parent 257102e63d
commit 88e9ff62ee
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ TEST(SupportDeathTest, TempDirectoryOnWindows) {
SmallString<270> Expected{"C:\\Temp\\AB\\123456789"};
while (Expected.size() < 260)
Expected.append("\\DirNameWith19Charss");
ASSERT_EQ(260, Expected.size());
ASSERT_EQ(260U, Expected.size());
EXPECT_TEMP_DIR(_putenv_s("TMP", Expected.c_str()), Expected.c_str());
}
#endif