]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/flyweight/detail/default_value_policy.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / flyweight / detail / default_value_policy.hpp
index 4209a69c1c9f3d3f0a025f20a29c3e952f680cae..e0d9b668bdff1f35c776777409ebd16c26c64fca 100644 (file)
@@ -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(){}