Fixes for void specialisations

[SVN r8751]
This commit is contained in:
John Maddock
2001-01-24 12:16:16 +00:00
parent 905a17a1c1
commit 11f69e0ec0

View File

@@ -55,7 +55,7 @@ template <> struct is_integral<wchar_t>
template <> struct is_integral<bool>
{ BOOST_DECL_MC(bool, value, true); };
#ifdef ULLONG_MAX
#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX)
template <> struct is_integral<unsigned long long>
{ BOOST_DECL_MC(bool, value, true); };
template <> struct is_integral<long long>
@@ -116,7 +116,7 @@ template <> struct is_integral<const wchar_t>
template <> struct is_integral<const bool>
{ BOOST_DECL_MC(bool, value, true); };
#ifdef ULLONG_MAX
#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX)
template <> struct is_integral<const unsigned long long>
{ BOOST_DECL_MC(bool, value, true); };
template <> struct is_integral<const long long>