summaryrefslogtreecommitdiff
path: root/boost/flyweight/detail/default_value_policy.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/flyweight/detail/default_value_policy.hpp')
-rw-r--r--boost/flyweight/detail/default_value_policy.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/boost/flyweight/detail/default_value_policy.hpp b/boost/flyweight/detail/default_value_policy.hpp
index 4209a69c1c..e0d9b668bd 100644
--- a/boost/flyweight/detail/default_value_policy.hpp
+++ b/boost/flyweight/detail/default_value_policy.hpp
@@ -1,4 +1,4 @@
-/* Copyright 2006-2014 Joaquin M Lopez Munoz.
+/* Copyright 2006-2019 Joaquin M Lopez Munoz.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
@@ -39,10 +39,9 @@ struct default_value_policy:value_marker
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)&&\
!defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)&&\
- BOOST_WORKAROUND(__GNUC__,<=4)&&(__GNUC__<4||__GNUC_MINOR__<=4)
-
-/* GCC 4.4.2 (and probably prior) bug: the default ctor generated by the
- * variadic temmplate ctor below fails to value-initialize x.
+ BOOST_WORKAROUND(BOOST_GCC,<=40603)
+/* GCC bug: the default ctor generated by the variadic template ctor below
+ * fails to value-initialize x.
*/
rep_type():x(){}