From 26ba07f36cc37f93a1f4739ad79dd044ff48b5ba Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Sat, 1 Sep 2012 02:02:09 +0000 Subject: [PATCH] move-assign test tweaks [SVN r80346] --- test/Jamfile | 2 +- test/sequence/move.hpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 8cdd143d..5d68124a 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -136,7 +136,7 @@ import testing ; [ run sequence/define_struct.cpp : : : : ] [ run sequence/define_struct_inline.cpp : : : : ] [ run sequence/define_assoc_struct.cpp : : : : ] - [ run sequence/define_tpl_struct.cpp : : : : ] + [ run sequence/define_tpl_struct.cpp : : : : ] [ run sequence/define_tpl_struct_inline.cpp : : : : ] [ run sequence/define_assoc_tpl_struct.cpp : : : : ] [ run sequence/std_tuple_iterator.cpp : : : : ] diff --git a/test/sequence/move.hpp b/test/sequence/move.hpp index 568cfd89..b96a60e7 100644 --- a/test/sequence/move.hpp +++ b/test/sequence/move.hpp @@ -11,7 +11,6 @@ #endif #include -#include #include #include #include @@ -26,7 +25,7 @@ namespace test_detail copies++; } - struct x //: boost::noncopyable + struct x { int i; x() : i(123) {}