Commit 35f9de71 by Eric Fiselier

move to using C headers in minimal_benchmark.h to prevent getting any C++ STL headers

parent ef79d0af
...@@ -135,9 +135,9 @@ BENCHMARK(BM_MultiThreaded)->Threads(4); ...@@ -135,9 +135,9 @@ BENCHMARK(BM_MultiThreaded)->Threads(4);
#ifndef BENCHMARK_MINIMAL_BENCHMARK_H_ #ifndef BENCHMARK_MINIMAL_BENCHMARK_H_
#define BENCHMARK_MINIMAL_BENCHMARK_H_ #define BENCHMARK_MINIMAL_BENCHMARK_H_
#include <cassert> #include <assert.h>
#include <cstddef> #include <stddef.h>
#include <cstdint> #include <stdint.h>
#include "macros.h" #include "macros.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment