summaryrefslogtreecommitdiffstats
path: root/libcxx/include/iterator
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2016-07-18 13:19:00 +0000
committerMarshall Clow <mclow.lists@gmail.com>2016-07-18 13:19:00 +0000
commit2ee837256a86f5fda81589dc940076bec405fdb3 (patch)
tree1f611e87522743c220973e29f3428f9fc5cd6b90 /libcxx/include/iterator
parentd32a2d30cbe10cb966d0d98819a657eb209d1b47 (diff)
downloadbcm5719-llvm-2ee837256a86f5fda81589dc940076bec405fdb3.tar.gz
bcm5719-llvm-2ee837256a86f5fda81589dc940076bec405fdb3.zip
Change a couple ifdefs from '#if __cplusplus >= 2011xxx' to '#ifndef _LIBCPP_CXX03_LANG'. No functionality change.
llvm-svn: 275787
Diffstat (limited to 'libcxx/include/iterator')
-rw-r--r--libcxx/include/iterator10
1 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/include/iterator b/libcxx/include/iterator
index 2e30a922998..abd142e85aa 100644
--- a/libcxx/include/iterator
+++ b/libcxx/include/iterator
@@ -700,7 +700,7 @@ operator<=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>&
return __x.base() >= __y.base();
}
-#if __cplusplus >= 201103L
+#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
auto
@@ -1117,7 +1117,7 @@ operator<=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
return __x.base() <= __y.base();
}
-#if __cplusplus >= 201103L
+#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
auto
@@ -1186,7 +1186,7 @@ _LIBCPP_INLINE_VISIBILITY
bool
operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
-#if __cplusplus >= 201103L
+#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
auto
@@ -1379,7 +1379,7 @@ private:
bool
operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
-#if __cplusplus >= 201103L
+#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
friend
auto
@@ -1496,7 +1496,7 @@ operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEX
return !(__y < __x);
}
-#if __cplusplus >= 201103L
+#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
auto
OpenPOWER on IntegriCloud