From 74a61f025295a34ff603381ca657681cc4279a9f Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 26 Nov 2012 18:47:49 +0000 Subject: [PATCH] Removed usage of deprecated macros in Boost.Function [SVN r81570] --- test/function_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/function_test.cpp b/test/function_test.cpp index 7f5cb04..02a60ce 100644 --- a/test/function_test.cpp +++ b/test/function_test.cpp @@ -733,7 +733,7 @@ static void test_move_semantics() BOOST_CHECK(!f1.empty()); BOOST_CHECK(global_int == 1); -#ifndef BOOST_NO_RVALUE_REFERENCES +#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES // Testing rvalue constructors f1_type f2(static_cast(f1)); BOOST_CHECK(f1.empty());