mn_uint128.hpp
Go to the documentation of this file.
1 
19 #ifndef MINLIB_141d5496_b8a8_4aed_a898_4fc5b62195bc_H_
20 #define MINLIB_141d5496_b8a8_4aed_a898_4fc5b62195bc_H_
21 
22 #include "mn_config.hpp"
23 
24 #include <stddef.h>
25 #include <stdint.h>
26 
27 
28 
29 namespace mn {
30  struct basic_uint128_t {
31  union {
32  struct {
33  uint64_t high;
34  uint64_t low;
35  };
36  uint64_t value[2];
37  };
38  };
39 
42 }
43 
44 #endif
Definition: mn_allocator_typetraits.hpp:25
Definition: mn_uint128.hpp:30