From b75b7dd5acb3c2b9a7946bb4faa861fb04df19cf Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 24 Sep 2009 20:42:19 +0000 Subject: [PATCH] Remove temporary test. [SVN r56374] --- test/unordered/Jamfile.v2 | 1 - test/unordered/out_of_line.cpp | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100644 test/unordered/out_of_line.cpp diff --git a/test/unordered/Jamfile.v2 b/test/unordered/Jamfile.v2 index 5a4696f6..ee1505f7 100644 --- a/test/unordered/Jamfile.v2 +++ b/test/unordered/Jamfile.v2 @@ -38,5 +38,4 @@ test-suite unordered [ run rehash_tests.cpp ] [ run equality_tests.cpp ] [ run swap_tests.cpp : : : BOOST_UNORDERED_SWAP_METHOD=2 ] - [ run out_of_line.cpp ] ; diff --git a/test/unordered/out_of_line.cpp b/test/unordered/out_of_line.cpp deleted file mode 100644 index 98262529..00000000 --- a/test/unordered/out_of_line.cpp +++ /dev/null @@ -1,21 +0,0 @@ -// Just a little test to see if out of line template methods are supported: - -#include - -template -struct foo { - template - bool bar(U x); -}; - -template -template -bool foo::bar(U x) { return x ? true : false; } - -int main() { - foo x; - BOOST_TEST(x.bar(1)); - BOOST_TEST(!x.bar(0)); - - return boost::report_errors(); -} \ No newline at end of file