diff options
Diffstat (limited to 'lib/libcxx/utils/google-benchmark/src/complexity.h')
-rw-r--r-- | lib/libcxx/utils/google-benchmark/src/complexity.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/libcxx/utils/google-benchmark/src/complexity.h b/lib/libcxx/utils/google-benchmark/src/complexity.h index 23cd9bbc8c7..df29b48d29b 100644 --- a/lib/libcxx/utils/google-benchmark/src/complexity.h +++ b/lib/libcxx/utils/google-benchmark/src/complexity.h @@ -21,17 +21,10 @@ #include <string> #include <vector> -#include "benchmark/benchmark_api.h" -#include "benchmark/reporter.h" +#include "benchmark/benchmark.h" namespace benchmark { -// Return a vector containing the mean and standard devation information for -// the specified list of reports. If 'reports' contains less than two -// non-errored runs an empty vector is returned -std::vector<BenchmarkReporter::Run> ComputeStats( - const std::vector<BenchmarkReporter::Run>& reports); - // Return a vector containing the bigO and RMS information for the specified // list of reports. If 'reports.size() < 2' an empty vector is returned. std::vector<BenchmarkReporter::Run> ComputeBigO( @@ -58,4 +51,5 @@ struct LeastSq { std::string GetBigOString(BigO complexity); } // end namespace benchmark + #endif // COMPLEXITY_H_ |