diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-05-13 17:52:14 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-05-13 17:59:09 +0200 |
commit | 1b936f59264a4f4a867baece1e0ee4ec02f73cee (patch) | |
tree | bee678b62d3ab3e0cda83144f0f2a8ddf25d777d /src/bench/bench.cpp | |
parent | 94e52273f30fc9f3f1a7b58778ed21781bb2a744 (diff) |
Replace boost::function with std::function (C++11)
Diffstat (limited to 'src/bench/bench.cpp')
-rw-r--r-- | src/bench/bench.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bench/bench.cpp b/src/bench/bench.cpp index b0df3d2b04..33631d2d15 100644 --- a/src/bench/bench.cpp +++ b/src/bench/bench.cpp @@ -5,6 +5,7 @@ #include "bench.h" #include "perf.h" +#include <assert.h> #include <iostream> #include <iomanip> #include <sys/time.h> |