diff --git a/hash/test/Jamfile.v2 b/hash/test/Jamfile.v2 index 34294f0..2c65685 100644 --- a/hash/test/Jamfile.v2 +++ b/hash/test/Jamfile.v2 @@ -47,7 +47,6 @@ test-suite functional/hash [ compile-fail hash_no_ext_fail_test.cpp ] [ compile-fail namespace_fail_test.cpp ] [ compile-fail implicit_fail_test.cpp ] - [ compile-fail shared_ptr_fail_test.cpp ] [ run hash_no_ext_macro_1.cpp ] [ run hash_no_ext_macro_2.cpp ] ; diff --git a/hash/test/shared_ptr_fail_test.cpp b/hash/test/shared_ptr_fail_test.cpp deleted file mode 100644 index b0e045f..0000000 --- a/hash/test/shared_ptr_fail_test.cpp +++ /dev/null @@ -1,16 +0,0 @@ - -// Copyright 2010 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -#include -#include - -// This should obviously pass if shared_ptr ever supports Boost.Hash. - -int main() { - boost::hash > hash; - boost::shared_ptr x(new int(10)); - - hash(x); -}