diff options
author | lloyd <[email protected]> | 2008-09-05 12:46:18 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-05 12:46:18 +0000 |
commit | e292d9c1263fc74c26b26b9bd6f879ab25cc19ee (patch) | |
tree | 73953a1061223fc65e9236d232caf04bbc5a1aa4 /checks/pk_bench.cpp | |
parent | a8973ceb0c0f70e67e30b1c36e4ed833bc158445 (diff) |
Use the Timer class for all benchmarking
Diffstat (limited to 'checks/pk_bench.cpp')
-rw-r--r-- | checks/pk_bench.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/checks/pk_bench.cpp b/checks/pk_bench.cpp index fb2414b0d..df1c6cde1 100644 --- a/checks/pk_bench.cpp +++ b/checks/pk_bench.cpp @@ -20,21 +20,6 @@ using namespace Botan; #include <fstream> #include <string> #include <memory> -#include <map> -#include <set> - -class Benchmark_Report - { - public: - void report(const std::string& name, Timer timer) - { - std::cout << name << " " << timer << "\n"; - data[name].insert(timer); - } - - private: - std::map<std::string, std::set<Timer> > data; - }; namespace { |