From c003db1fcae660d055b1b29852065f67bbabd35e Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 29 Nov 2011 18:15:50 +0000 Subject: Further macro protection by replacing _[A-Z] with _[A-Z]p llvm-svn: 145410 --- libcxx/include/__split_buffer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcxx/include/__split_buffer') diff --git a/libcxx/include/__split_buffer b/libcxx/include/__split_buffer index 581f1596cca..b63a6c7f197 100644 --- a/libcxx/include/__split_buffer +++ b/libcxx/include/__split_buffer @@ -392,8 +392,8 @@ __split_buffer<_Tp, _Allocator>::__split_buffer(__split_buffer&& __c, const __al __first_ = __alloc_traits::allocate(__alloc(), __cap); __begin_ = __end_ = __first_; __end_cap() = __first_ + __cap; - typedef move_iterator _I; - __construct_at_end(_I(__c.begin()), _I(__c.end())); + typedef move_iterator _Ip; + __construct_at_end(_Ip(__c.begin()), _Ip(__c.end())); } } -- cgit v1.2.3