updated boost on windows

This commit is contained in:
Bassem Girgis
2019-08-13 21:48:48 -05:00
parent 7d77d485fd
commit b40a3bee82
5162 changed files with 473027 additions and 116452 deletions

View File

@@ -26,11 +26,11 @@ struct ordinal_tag {};
template<int N>
struct ordinal {
typedef detail::ordinal_tag tag;
static const long value = N;
BOOST_STATIC_CONSTEXPR long value = N;
};
template<int N>
const long ordinal<N>::value;
BOOST_CONSTEXPR_OR_CONST long ordinal<N>::value;
}