diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index 0aaf8953..f1b7ba3e 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -109,10 +109,16 @@ # define BOOST_HAS_VARIADIC_TMPL #endif +// Rvalue reference support +#ifdef __RVALUE_REFS +# define BOOST_HAS_RVALUE_REFS +#endif + // ConceptGCC compiler: // http://www.generic-programming.org/software/ConceptGCC/ #ifdef __GXX_CONCEPTS__ # define BOOST_HAS_CONCEPTS +# define BOOST_HAS_RVALUE_REFS # define BOOST_COMPILER "ConceptGCC version " __VERSION__ #endif