diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-02 08:49:17 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-02 08:49:17 -0400 |
commit | 6a728a46d837384074228959d6330ba29e03aee0 (patch) | |
tree | 9a4deef7aea5c6b936eebdb01d8538744030d116 /include/common.hpp | |
parent | afa34b3140979874d46a362e83dc0d1eebd137eb (diff) |
arena/page fixes
Diffstat (limited to 'include/common.hpp')
-rw-r--r-- | include/common.hpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/common.hpp b/include/common.hpp index e607c12..b9e0e71 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -154,7 +154,6 @@ void safeSetColor(int r,int g,int b); */ void safeSetColorA(int r,int g,int b,int a); - // use our own millis function if we can, windows doesn't like <chrono> at the moment... #ifdef __WIN32__ #define millis() SDL_GetTicks() @@ -174,4 +173,14 @@ const char *readFile(const char *path); // aborts the program, printing the given error void UserError(std::string reason); +namespace std { + template<class T> + constexpr const T& clamp(const T& v, const T& lo, const T& hi) { + if (v < hi) + return (v > lo) ? v : lo; + else + return (v < hi) ? v : hi; + } +} + #endif // COMMON_H |