Change a couple ifdefs from '#if __cplusplus >= 2011xxx' to '#ifndef _LIBCPP_CXX03_LANG'. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@275787 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -910,7 +910,7 @@ public:
|
||||
_LIBCPP_INLINE_VISIBILITY
|
||||
map& operator=(const map& __m)
|
||||
{
|
||||
#if __cplusplus >= 201103L
|
||||
#ifndef _LIBCPP_CXX03_LANG
|
||||
__tree_ = __m.__tree_;
|
||||
#else
|
||||
if (this != &__m) {
|
||||
@@ -1637,7 +1637,7 @@ public:
|
||||
_LIBCPP_INLINE_VISIBILITY
|
||||
multimap& operator=(const multimap& __m)
|
||||
{
|
||||
#if __cplusplus >= 201103L
|
||||
#ifndef _LIBCPP_CXX03_LANG
|
||||
__tree_ = __m.__tree_;
|
||||
#else
|
||||
if (this != &__m) {
|
||||
|
||||
Reference in New Issue
Block a user