1
0
forked from boostorg/core

Add tests for __int128 to type_name_test.cpp

This commit is contained in:
Peter Dimov
2022-05-30 03:00:37 +03:00
parent c0e2211c2b
commit f941d2e1f7

View File

@ -82,6 +82,11 @@ int main()
TEST(long long);
TEST(unsigned long long);
#if defined(BOOST_HAS_INT128)
TEST(__int128);
TEST(unsigned __int128);
#endif
TEST(char);
TEST(wchar_t);
#if !defined(BOOST_NO_CXX11_CHAR16_T)