summaryrefslogtreecommitdiff
path: root/boost/random/shuffle_order.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/random/shuffle_order.hpp')
-rw-r--r--boost/random/shuffle_order.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/random/shuffle_order.hpp b/boost/random/shuffle_order.hpp
index 1c8d875d5b..646c09bafa 100644
--- a/boost/random/shuffle_order.hpp
+++ b/boost/random/shuffle_order.hpp
@@ -8,7 +8,7 @@
*
* See http://www.boost.org for most recent version including documentation.
*
- * $Id: shuffle_order.hpp 71018 2011-04-05 21:27:52Z steven_watanabe $
+ * $Id$
*
*/
@@ -98,7 +98,7 @@ public:
*/
explicit shuffle_order_engine(const base_type & rng) : _rng(rng) { init(); }
-#ifndef BOOST_NO_RVALUE_REFERENCES
+#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
explicit shuffle_order_engine(base_type&& rng) : _rng(rng) { init(); }
#endif