diff options
Diffstat (limited to 'src/utils/timer.cpp')
-rw-r--r-- | src/utils/timer.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/utils/timer.cpp b/src/utils/timer.cpp index 8dec7066..433fcb26 100644 --- a/src/utils/timer.cpp +++ b/src/utils/timer.cpp @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "utils/timer.hpp" +#include "timer.hpp" long long int systemTimeMs() { @@ -28,4 +28,9 @@ long long int systemTimeMs() t_msec.millitm; } return timestamp_msec; -}
\ No newline at end of file +} + + +frequency_clock_t::frequency_clock_t() + : frequency_{0.0}, last_tick_{0}, time_function_{nullptr} +{}
\ No newline at end of file |