~phablet-team/aethercast/trunk

« back to all changes in this revision

Viewing changes to tests/common/benchmark.h

  • Committer: Bileto Bot
  • Author(s): Simon Fels
  • Date: 2016-06-07 08:27:01 UTC
  • mfrom: (143.3.9 cleanup-things)
  • Revision ID: ci-train-bot@canonical.com-20160607082701-tpau21sr4nrt9v2y
Cleanup various things

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
17
17
 */
18
18
 
19
 
#ifndef MCS_TESTING_COMMON_BENCHMARK_H_
20
 
#define MCS_TESTING_COMMON_BENCHMARK_H_
 
19
#ifndef AC_TESTING_COMMON_BENCHMARK_H_
 
20
#define AC_TESTING_COMMON_BENCHMARK_H_
21
21
 
22
22
#include <chrono>
23
23
#include <functional>
26
26
 
27
27
#include "tests/common/statistics.h"
28
28
 
29
 
namespace mcs {
 
29
namespace ac {
30
30
namespace testing {
31
31
 
32
32
/**
195
195
std::ostream& operator<<(std::ostream&, const Benchmark::Result&);
196
196
 
197
197
} // namespace testing
198
 
} // namespace mcs
 
198
} // namespace ac
199
199
 
200
200
#endif