Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #include <stdio.h> // Use stdio.h to test own type traits since including iostream will include <type_traits> into namespaces and there would be redefinition of integral_type and enable_if.
  2.  
  3. #define __OWN_TYPE_TRAITS__
  4. #include "bitex_native.hpp"
  5.  
  6. int main(const int argc, const char* const* const argv) {
  7. printf("%d\n%d\n", bitex::native_maximum_s<int>(32, 64), bitex::native_minimum_s<unsigned long long>(62, 128));
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement