aboutsummaryrefslogtreecommitdiff
path: root/util/testharness.cc
diff options
context:
space:
mode:
Diffstat (limited to 'util/testharness.cc')
-rw-r--r--util/testharness.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/testharness.cc b/util/testharness.cc
index eb1bdd5..402fab3 100644
--- a/util/testharness.cc
+++ b/util/testharness.cc
@@ -38,7 +38,7 @@ int RunAllTests() {
int num = 0;
if (tests != NULL) {
- for (int i = 0; i < tests->size(); i++) {
+ for (size_t i = 0; i < tests->size(); i++) {
const Test& t = (*tests)[i];
if (matcher != NULL) {
std::string name = t.base;