From a5491d988ac6812f32feb363976641bbe55868d0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 12 Feb 2022 18:53:29 +0200 Subject: [PATCH] Disable rvalue references on GCC 4.4 --- include/boost/bind/bind.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/bind/bind.hpp b/include/boost/bind/bind.hpp index 1083efc..2762641 100644 --- a/include/boost/bind/bind.hpp +++ b/include/boost/bind/bind.hpp @@ -844,7 +844,7 @@ public: // bind_t -#if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES ) +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !(defined(BOOST_GCC) && BOOST_GCC < 40600) template< class A1 > class rrlist1 {