diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-01-16 17:20:41 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-01-16 17:20:41 +0000 |
commit | dfd66a522f6e3ab9b03c0921ba40f012de0958b0 (patch) | |
tree | b0d11b87de3fd53ccd72be004b0c8a22ff52a404 /include/algorithm | |
parent | 043da5ce84d67963aeeba7fa694033d953da16b6 (diff) |
Notes
Diffstat (limited to 'include/algorithm')
-rw-r--r-- | include/algorithm | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/algorithm b/include/algorithm index 9c051198930d..71e5df37dfeb 100644 --- a/include/algorithm +++ b/include/algorithm @@ -1687,25 +1687,6 @@ search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const } // copy - -template <class _Iter> -struct __libcpp_is_trivial_iterator -{ - static const bool value = is_pointer<_Iter>::value; -}; - -template <class _Iter> -struct __libcpp_is_trivial_iterator<move_iterator<_Iter> > -{ - static const bool value = is_pointer<_Iter>::value; -}; - -template <class _Iter> -struct __libcpp_is_trivial_iterator<__wrap_iter<_Iter> > -{ - static const bool value = is_pointer<_Iter>::value; -}; - template <class _Iter> inline _LIBCPP_INLINE_VISIBILITY _Iter |