diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-03-10 19:08:03 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-03-10 19:08:03 +0100 |
commit | bc7c4cb72790ff7f64917cdb63f9b6c209c75384 (patch) | |
tree | a5e0a4407e15dddfad6df39320141c9159841b59 /compat/timer.hpp | |
parent | 958b2c1bed7603dd0eb16c2a403ab9efd8e6b20f (diff) |
compat/time{,r}: get rid of `long long'
Diffstat (limited to 'compat/timer.hpp')
-rw-r--r-- | compat/timer.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/timer.hpp b/compat/timer.hpp index 03b537ac..3ceda093 100644 --- a/compat/timer.hpp +++ b/compat/timer.hpp @@ -33,7 +33,7 @@ public: } template<typename t> - bool is_elapsed(const t& time_value) + bool is_elapsed(t&& time_value) { using namespace time_units; |