[TSan] Fix -Werror=sign-compare warning. NFC.

llvm-svn: 227527
This commit is contained in:
Alexey Samsonov 2015-01-30 01:02:12 +00:00
parent 35cad9d2c2
commit 8b3334d909
1 changed files with 2 additions and 2 deletions

View File

@ -211,8 +211,8 @@ TEST(Clock, Growth) {
}
}
const int kThreads = 4;
const int kClocks = 4;
const uptr kThreads = 4;
const uptr kClocks = 4;
// SimpleSyncClock and SimpleThreadClock implement the same thing as
// SyncClock and ThreadClock, but in a very simple way.