1
0
forked from boostorg/core

Use boost::(u)long_long_type to avoid g++ warning

This commit is contained in:
Peter Dimov
2021-10-27 04:45:40 +03:00
parent fda0f87576
commit 0565456622

View File

@ -289,7 +289,7 @@ template<> struct tn_holder<unsigned long>
}
};
template<> struct tn_holder<long long>
template<> struct tn_holder<boost::long_long_type>
{
static std::string type_name( std::string const& suffix )
{
@ -297,7 +297,7 @@ template<> struct tn_holder<long long>
}
};
template<> struct tn_holder<unsigned long long>
template<> struct tn_holder<boost::ulong_long_type>
{
static std::string type_name( std::string const& suffix )
{