changed complexity_n from int to size_t
diff --git a/include/benchmark/reporter.h b/include/benchmark/reporter.h
index 8656402..f37ef20 100644
--- a/include/benchmark/reporter.h
+++ b/include/benchmark/reporter.h
@@ -70,7 +70,7 @@
     
     // Keep track of arguments to compute asymptotic complexity
     BigO   complexity;
-    int    complexity_n;
+    size_t complexity_n;
     
     // Inform print function whether the current run is a complexity report
     bool report_big_o;