Use correct integer type for complexity. MSVC warns otherwise

This commit is contained in:
Eric Fiselier 2016-07-22 17:48:37 -06:00
parent 950c8b7440
commit 3b2d0abd2b
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ public:
}
BENCHMARK_ALWAYS_INLINE
size_t complexity_length_n() {
int complexity_length_n() {
return complexity_n_;
}