ulid
ulid.hh
Go to the documentation of this file.
1 #pragma once
2 
3 // http://stackoverflow.com/a/23981011
4 #ifdef __SIZEOF_INT128__
5 #define ULIDUINT128
6 #endif
7 
8 #ifdef ULIDUINT128
9 #include "ulid_uint128.hh"
10 #else
11 #include "ulid_struct.hh"
12 #endif // ULIDUINT128