Guest User

Untitled

a guest
May 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. template<typename T> kiss::enable_if<(is_integral<T>() && (sizeof(T) >= sizeof(int))), T>
  2. constexpr abs(const T);
  3. template<> constexpr int abs<int>(const int x)
  4. { return __builtin_abs(x); }
Add Comment
Please, Sign In to add comment