Merge pull request #60 from Flast/patch-1

Added is_final intrinsic for msvc 2013 and later
This commit is contained in:
jzmaddock
2018-05-08 18:38:34 +01:00
committed by GitHub

View File

@ -135,6 +135,9 @@
# define BOOST_IS_NOTHROW_MOVE_ASSIGN(T) (__is_nothrow_assignable(T&, T&&))
# define BOOST_IS_NOTHROW_MOVE_CONSTRUCT(T) (__is_nothrow_constructible(T, T&&))
#endif
#if _MSC_VER >= 1800
# define BOOST_IS_FINAL(T) __is_final(T)
#endif
# define BOOST_HAS_TYPE_TRAITS_INTRINSICS
#endif