summaryrefslogtreecommitdiff
path: root/boost/smart_ptr/allocate_shared_array.hpp
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2019-12-05 15:12:59 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2019-12-05 15:12:59 +0900
commitb8cf34c691623e4ec329053cbbf68522a855882d (patch)
tree34da08632a99677f6b79ecb65e5b655a5b69a67f /boost/smart_ptr/allocate_shared_array.hpp
parent3fdc3e5ee96dca5b11d1694975a65200787eab86 (diff)
downloadboost-b8cf34c691623e4ec329053cbbf68522a855882d.tar.gz
boost-b8cf34c691623e4ec329053cbbf68522a855882d.tar.bz2
boost-b8cf34c691623e4ec329053cbbf68522a855882d.zip
Imported Upstream version 1.67.0upstream/1.67.0
Diffstat (limited to 'boost/smart_ptr/allocate_shared_array.hpp')
-rw-r--r--boost/smart_ptr/allocate_shared_array.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/boost/smart_ptr/allocate_shared_array.hpp b/boost/smart_ptr/allocate_shared_array.hpp
index 53023e7182..340688146c 100644
--- a/boost/smart_ptr/allocate_shared_array.hpp
+++ b/boost/smart_ptr/allocate_shared_array.hpp
@@ -353,9 +353,9 @@ public:
typedef A type;
template<class U>
- sp_array_state(const U& allocator, std::size_t size) BOOST_SP_NOEXCEPT
- : allocator_(allocator),
- size_(size) { }
+ sp_array_state(const U& _allocator, std::size_t _size) BOOST_SP_NOEXCEPT
+ : allocator_(_allocator),
+ size_(_size) { }
A& allocator() BOOST_SP_NOEXCEPT {
return allocator_;
@@ -376,8 +376,8 @@ public:
typedef A type;
template<class U>
- sp_size_array_state(const U& allocator, std::size_t) BOOST_SP_NOEXCEPT
- : allocator_(allocator) { }
+ sp_size_array_state(const U& _allocator, std::size_t) BOOST_SP_NOEXCEPT
+ : allocator_(_allocator) { }
A& allocator() BOOST_SP_NOEXCEPT {
return allocator_;