mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-07-30 20:57:21 +02:00
Add sp_pedantic_test
This commit is contained in:
@ -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
14
test/sp_pedantic_test.cpp
Normal 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 );
|
||||
}
|
Reference in New Issue
Block a user