Add sp_pedantic_test

This commit is contained in:
Peter Dimov
2020-04-26 19:57:05 +03:00
parent eb8998cd91
commit 9c43c69c14
2 changed files with 15 additions and 0 deletions

View File

@ -361,3 +361,4 @@ compile-fail shared_from_fail.cpp ;
compile-fail weak_from_fail.cpp ;
compile sp_override_test.cpp ;
compile sp_pedantic_test.cpp : <warnings>pedantic <warnings-as-errors>on ;

14
test/sp_pedantic_test.cpp Normal file
View File

@ -0,0 +1,14 @@
// Copyright 2020 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/smart_ptr.hpp>
int main()
{
boost::shared_ptr<int> p1( new int );
boost::shared_ptr<int[]> p2( new int[1] );
boost::make_shared<int>();
boost::make_shared<int[]>( 1 );
}