-Wshadow fixes.

This commit is contained in:
Peter Dimov
2014-07-12 20:35:14 +03:00
parent d6841e6d71
commit bf3e9cc7af

View File

@ -108,14 +108,14 @@ namespace boost {
typedef typename array_base<T>::type type; typedef typename array_base<T>::type type;
as_allocator(const A& allocator, type** result) as_allocator(const A& allocator_, type** result)
: A(allocator), : A(allocator_),
data(result) { data(result) {
} }
as_allocator(const A& allocator, std::size_t size, as_allocator(const A& allocator_, std::size_t size,
type** result) type** result)
: A(allocator), : A(allocator_),
data(size, result) { data(size, result) {
} }