Merge pull request #212 from glenfe/develop

Variable templates are somewhat unusable in GCC 5.1 (bug 65719)
This commit is contained in:
jzmaddock
2018-02-10 11:59:13 +00:00
committed by GitHub

View File

@ -285,7 +285,7 @@
#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
# define BOOST_NO_CXX14_CONSTEXPR
#endif
#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
#if (BOOST_GCC_VERSION < 50200) || !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
# define BOOST_NO_CXX14_VARIABLE_TEMPLATES
#endif