summaryrefslogtreecommitdiff
path: root/boost/smart_ptr/detail
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2016-10-06 10:38:45 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2016-10-06 10:39:52 +0900
commit5cde13f21d36c7224b0e13d11c4b49379ae5210d (patch)
treee8269ac85a4b0f7d416e2565fa4f451b5cb41351 /boost/smart_ptr/detail
parentd9ec475d945d3035377a0d89ed42e382d8988891 (diff)
downloadboost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.tar.gz
boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.tar.bz2
boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.zip
Imported Upstream version 1.61.0
Change-Id: I96a1f878d1e6164f01e9aadd5147f38fca448d90 Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'boost/smart_ptr/detail')
-rw-r--r--boost/smart_ptr/detail/up_if_array.hpp26
-rw-r--r--boost/smart_ptr/detail/up_if_not_array.hpp31
2 files changed, 0 insertions, 57 deletions
diff --git a/boost/smart_ptr/detail/up_if_array.hpp b/boost/smart_ptr/detail/up_if_array.hpp
deleted file mode 100644
index 7e62d106b4..0000000000
--- a/boost/smart_ptr/detail/up_if_array.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2014 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)
- */
-#ifndef BOOST_SMART_PTR_DETAIL_UP_IF_ARRAY_HPP
-#define BOOST_SMART_PTR_DETAIL_UP_IF_ARRAY_HPP
-
-#include <memory>
-
-namespace boost {
- namespace detail {
- template<class T>
- struct up_if_array;
-
- template<class T>
- struct up_if_array<T[]> {
- typedef std::unique_ptr<T[]> type;
- };
- }
-}
-
-#endif
diff --git a/boost/smart_ptr/detail/up_if_not_array.hpp b/boost/smart_ptr/detail/up_if_not_array.hpp
deleted file mode 100644
index fd74f25318..0000000000
--- a/boost/smart_ptr/detail/up_if_not_array.hpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (c) 2014 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)
- */
-#ifndef BOOST_SMART_PTR_DETAIL_UP_IF_NOT_ARRAY_HPP
-#define BOOST_SMART_PTR_DETAIL_UP_IF_NOT_ARRAY_HPP
-
-#include <memory>
-
-namespace boost {
- namespace detail {
- template<class T>
- struct up_if_not_array {
- typedef std::unique_ptr<T> type;
- };
-
- template<class T>
- struct up_if_not_array<T[]> {
- };
-
- template<class T, std::size_t N>
- struct up_if_not_array<T[N]> {
- };
- }
-}
-
-#endif