Index: src/counters.cc |
diff --git a/src/counters.cc b/src/counters.cc |
index b71b28ce526a161c11be95d67d213f5509b47ffd..57dad3db1d9a22409a163d3218794b384180a044 100644 |
--- a/src/counters.cc |
+++ b/src/counters.cc |
@@ -318,7 +318,7 @@ void RuntimeCallStats::Print(std::ostream& os) { |
FOR_EACH_INTRINSIC(PRINT_COUNTER) |
#undef PRINT_COUNTER |
-#define PRINT_COUNTER(name, type) entries.Add(&this->Builtin_##name); |
+#define PRINT_COUNTER(name) entries.Add(&this->Builtin_##name); |
BUILTIN_LIST_C(PRINT_COUNTER) |
#undef PRINT_COUNTER |
@@ -343,7 +343,7 @@ void RuntimeCallStats::Reset() { |
FOR_EACH_INTRINSIC(RESET_COUNTER) |
#undef RESET_COUNTER |
-#define RESET_COUNTER(name, type) this->Builtin_##name.Reset(); |
+#define RESET_COUNTER(name) this->Builtin_##name.Reset(); |
BUILTIN_LIST_C(RESET_COUNTER) |
#undef RESET_COUNTER |