diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-11-07 23:40:13 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-11-07 23:40:13 +0100 |
commit | b1c6167e7909bc510b1ca1082ae2ceb8fb3c06c6 (patch) | |
tree | 523ff9a36282cebe60eaeccd68897453b929a156 /timer.h | |
parent | f1c1cca92cb6a9c4a1f8ef4d66ddc9e0df8e3ed8 (diff) | |
download | cpp-utils-b1c6167e7909bc510b1ca1082ae2ceb8fb3c06c6.tar.gz cpp-utils-b1c6167e7909bc510b1ca1082ae2ceb8fb3c06c6.zip |
timer: add missing include gurads
Diffstat (limited to 'timer.h')
-rw-r--r-- | timer.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef UTILS_TIMER_H +#define UTILS_TIMER_H + #include <cstdint> #include <ctime> @@ -62,3 +65,5 @@ struct scoped_timer { }; } // namespace timer + +#endif |