1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Silence compiler warning.

warning: comparison between signed and unsigned integer expressions
llvm-svn: 92359
This commit is contained in:
Benjamin Kramer 2009-12-31 16:27:13 +00:00
parent 4870f6a384
commit 9e60957f54

View File

@ -249,7 +249,7 @@ TEST(StringRefTest, Count) {
TEST(StringRefTest, EditDistance) {
StringRef Str("hello");
EXPECT_EQ(2, Str.edit_distance("hill"));
EXPECT_EQ(2U, Str.edit_distance("hill"));
}
TEST(StringRefTest, Misc) {