| 103 | class Timer { |
| 104 | public: |
| 105 | Timer() : data(), start_time( get_nanotime() ){} |
| 106 | Timer(nanotime_t start_time_) : data(), start_time(start_time_){} |
| 107 | |
| 108 | void step( const std::string& name){ |
nothing calls this directly
no test coverage detected