MeshLib C++ Docs
Loading...
Searching...
No Matches
MRFastInt128.h
Go to the documentation of this file.
1#pragma once
2
3#if __has_include(<__msvc_int128.hpp>)
4 #include <__msvc_int128.hpp>
5namespace MR
6{
9
13 using FastInt128 = std::_Signed128;
14 using FastUInt128 = std::_Unsigned128;
15}
16#else
19#define MR_HAS_BUILTIN_INT128 1
20namespace MR
21{
24
25 using FastInt128 = __int128_t;
26 using FastUInt128 = __uint128_t;
27}
28#endif
__int128_t FastInt128
Definition MRFastInt128.h:25
__uint128_t FastUInt128
Definition MRFastInt128.h:26
only for bindings generation
Definition MRCameraOrientationPlugin.h:8