mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +01:00
ircd: Add typedefs for __int128 to our namespace.
This commit is contained in:
parent
417e8ecad0
commit
cb8b38b160
1 changed files with 3 additions and 0 deletions
|
@ -159,6 +159,9 @@ namespace ircd
|
|||
using namespace std::string_literals;
|
||||
using namespace std::literals::chrono_literals;
|
||||
template<class... T> using ilist = std::initializer_list<T...>;
|
||||
|
||||
using int128_t = signed __int128;
|
||||
using uint128_t = unsigned __int128;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in a new issue