mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-10-05 12:11:07 +02:00
Use const T (&)[N] for fixed size arrays instead of std::initializer<T> in overloads of make_shared and allocate_shared for arrays. ........ Use BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX instead for certain overloads of make_shared and allocate_shared ........ Code consistency: Use the same style of #if conditional compilation checks in allocate_shared_array.hpp and make_shared_array.hpp. ........ Change make_shared and allocate_shared array form overload for size and inner array initialization list to use const T(&)[N] instead of std::initializer_list<T>. ........ Move two tests for allocate_shared and make_shared within check for BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX ........ Make specializations of detail array_deleter consistent. ........ [SVN r81682]
85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2012 Glen Joseph Fernandes
|
|
* glenfe at live dot com
|
|
*
|
|
* Distributed under the Boost Software License,
|
|
* Version 1.0. (See accompanying file LICENSE_1_0.txt
|
|
* or copy at http://boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
#include <boost/smart_ptr/make_shared_array.hpp>
|
|
|
|
class type {
|
|
public:
|
|
type(int value)
|
|
: value(value) {
|
|
}
|
|
const int value;
|
|
private:
|
|
type& operator=(const type&);
|
|
};
|
|
|
|
int main() {
|
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
|
{
|
|
boost::shared_ptr<int[]> a1 = boost::make_shared<int[]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0] == 0);
|
|
BOOST_TEST(a1[1] == 1);
|
|
BOOST_TEST(a1[2] == 2);
|
|
BOOST_TEST(a1[3] == 3);
|
|
}
|
|
{
|
|
boost::shared_ptr<const int[]> a1 = boost::make_shared<const int[]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0] == 0);
|
|
BOOST_TEST(a1[1] == 1);
|
|
BOOST_TEST(a1[2] == 2);
|
|
BOOST_TEST(a1[3] == 3);
|
|
}
|
|
{
|
|
boost::shared_ptr<type[]> a1 = boost::make_shared<type[]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0].value == 0);
|
|
BOOST_TEST(a1[1].value == 1);
|
|
BOOST_TEST(a1[2].value == 2);
|
|
BOOST_TEST(a1[3].value == 3);
|
|
}
|
|
{
|
|
boost::shared_ptr<const type[]> a1 = boost::make_shared<const type[]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0].value == 0);
|
|
BOOST_TEST(a1[1].value == 1);
|
|
BOOST_TEST(a1[2].value == 2);
|
|
BOOST_TEST(a1[3].value == 3);
|
|
}
|
|
#endif
|
|
#if !defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX)
|
|
{
|
|
boost::shared_ptr<int[4]> a1 = boost::make_shared<int[4]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0] == 0);
|
|
BOOST_TEST(a1[1] == 1);
|
|
BOOST_TEST(a1[2] == 2);
|
|
BOOST_TEST(a1[3] == 3);
|
|
}
|
|
{
|
|
boost::shared_ptr<const int[4]> a1 = boost::make_shared<const int[4]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0] == 0);
|
|
BOOST_TEST(a1[1] == 1);
|
|
BOOST_TEST(a1[2] == 2);
|
|
BOOST_TEST(a1[3] == 3);
|
|
}
|
|
{
|
|
boost::shared_ptr<type[4]> a1 = boost::make_shared<type[4]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0].value == 0);
|
|
BOOST_TEST(a1[1].value == 1);
|
|
BOOST_TEST(a1[2].value == 2);
|
|
BOOST_TEST(a1[3].value == 3);
|
|
}
|
|
{
|
|
boost::shared_ptr<const type[4]> a1 = boost::make_shared<const type[4]>({ 0, 1, 2, 3 });
|
|
BOOST_TEST(a1[0].value == 0);
|
|
BOOST_TEST(a1[1].value == 1);
|
|
BOOST_TEST(a1[2].value == 2);
|
|
BOOST_TEST(a1[3].value == 3);
|
|
}
|
|
#endif
|
|
return boost::report_errors();
|
|
}
|