mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 03:17:15 +02:00
Remove temporary test.
[SVN r56374]
This commit is contained in:
@ -38,5 +38,4 @@ test-suite unordered
|
|||||||
[ run rehash_tests.cpp ]
|
[ run rehash_tests.cpp ]
|
||||||
[ run equality_tests.cpp ]
|
[ run equality_tests.cpp ]
|
||||||
[ run swap_tests.cpp : : : <define>BOOST_UNORDERED_SWAP_METHOD=2 ]
|
[ run swap_tests.cpp : : : <define>BOOST_UNORDERED_SWAP_METHOD=2 ]
|
||||||
[ run out_of_line.cpp ]
|
|
||||||
;
|
;
|
||||||
|
@ -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();
|
|
||||||
}
|
|
Reference in New Issue
Block a user