diff options
author | Peter Dimov <pdimov@pdimov.com> | 2002-11-25 11:49:01 +0000 |
---|---|---|
committer | Peter Dimov <pdimov@pdimov.com> | 2002-11-25 11:49:01 +0000 |
commit | f94619f0cb2307f5633148b758cd632f7f7e13ec (patch) | |
tree | 9ccbdfb08526f2241b83379251019efc60a4e281 /status | |
parent | 1e306d8818b2d2fe9a8566f2a4784451c242a588 (diff) | |
download | boost-f94619f0cb2307f5633148b758cd632f7f7e13ec.tar.gz |
-Wno-non-virtual-dtor added for shared_ptr tests on GCC.
[SVN r16399]
Diffstat (limited to 'status')
-rw-r--r-- | status/Jamfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/status/Jamfile b/status/Jamfile index efa27f0662..9e0e2bfaed 100644 --- a/status/Jamfile +++ b/status/Jamfile @@ -508,8 +508,8 @@ include testing.jam ; test-suite smart_ptr : [ run libs/smart_ptr/smart_ptr_test.cpp ] - [ run libs/smart_ptr/shared_ptr_test.cpp ] - [ run libs/smart_ptr/enable_shared_from_this_test.cpp ] + [ run libs/smart_ptr/shared_ptr_test.cpp : : : <gcc><*><cxxflags>-Wno-non-virtual-dtor ] + [ run libs/smart_ptr/enable_shared_from_this_test.cpp : : : <gcc><*><cxxflags>-Wno-non-virtual-dtor ] [ run libs/smart_ptr/get_deleter_test.cpp ] [ compile-fail libs/smart_ptr/shared_ptr_assign_fail.cpp ] ; |