diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-05 12:54:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-05 12:54:48 -0400 |
commit | 643e94897ba5fab0570d118a7aafc7772949d4e3 (patch) | |
tree | 0c9580cccee3bba95664eddef37572f496573cc3 /include/common.hpp | |
parent | b1f93a4f8a5a3e84db9f00d0b41749d4fb32ed26 (diff) |
saving inventory
Diffstat (limited to 'include/common.hpp')
-rw-r--r-- | include/common.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp index 9ecd912..a03a888 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -23,11 +23,11 @@ constexpr float PI = 3.1415926535f; */ unsigned int millis(void); -namespace std { +/*namespace std { template<class T> constexpr const T& clamp(const T& v, const T& lo, const T& hi) { return (v > hi) ? hi : ((v > lo) ? v : lo); } -} +}*/ #endif // COMMON_HPP_ |