forked from OSchip/llvm-project
Fix a -Wsign-compare in Support Path unittests
llvm-svn: 260418
This commit is contained in:
parent
257102e63d
commit
88e9ff62ee
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue