Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56374 - trunk/libs/unordered/test/unordered
From: daniel_james_at_[hidden]
Date: 2009-09-24 16:42:20


Author: danieljames
Date: 2009-09-24 16:42:19 EDT (Thu, 24 Sep 2009)
New Revision: 56374
URL: http://svn.boost.org/trac/boost/changeset/56374

Log:
Remove temporary test.
Removed:
   trunk/libs/unordered/test/unordered/out_of_line.cpp
Text files modified:
   trunk/libs/unordered/test/unordered/Jamfile.v2 | 1 -
   1 files changed, 0 insertions(+), 1 deletions(-)

Modified: trunk/libs/unordered/test/unordered/Jamfile.v2
==============================================================================
--- trunk/libs/unordered/test/unordered/Jamfile.v2 (original)
+++ trunk/libs/unordered/test/unordered/Jamfile.v2 2009-09-24 16:42:19 EDT (Thu, 24 Sep 2009)
@@ -38,5 +38,4 @@
         [ run rehash_tests.cpp ]
         [ run equality_tests.cpp ]
         [ run swap_tests.cpp : : : <define>BOOST_UNORDERED_SWAP_METHOD=2 ]
- [ run out_of_line.cpp ]
     ;

Deleted: trunk/libs/unordered/test/unordered/out_of_line.cpp
==============================================================================
--- trunk/libs/unordered/test/unordered/out_of_line.cpp 2009-09-24 16:42:19 EDT (Thu, 24 Sep 2009)
+++ (empty file)
@@ -1,21 +0,0 @@
-// Just a little test to see if out of line template methods are supported:
-
-#include <boost/detail/lightweight_test.hpp>
-
-template <class T>
-struct foo {
- template <class U>
- bool bar(U x);
-};
-
-template <class T>
-template <class U>
-bool foo<T>::bar(U x) { return x ? true : false; }
-
-int main() {
- foo<int> x;
- BOOST_TEST(x.bar(1));
- BOOST_TEST(!x.bar(0));
-
- return boost::report_errors();
-}
\ No newline at end of file


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk