1
0
forked from boostorg/bind

Disable rvalue references on GCC 4.4

This commit is contained in:
Peter Dimov
2022-02-12 18:53:29 +02:00
parent 536721c41d
commit a5491d988a

View File

@@ -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
{