@@ -109,8 +109,7 @@ _LIBCPP_BEGIN_NAMESPACE_LFTS
109
109
#if _LIBCPP_STD_VER > 11
110
110
// default searcher
111
111
template <class _ForwardIterator , class _BinaryPredicate = equal_to<>>
112
- _LIBCPP_TYPE_VIS
113
- class default_searcher {
112
+ class _LIBCPP_TYPE_VIS default_searcher {
114
113
public:
115
114
_LIBCPP_INLINE_VISIBILITY
116
115
default_searcher (_ForwardIterator __f, _ForwardIterator __l,
@@ -208,8 +207,7 @@ public:
208
207
template <class _RandomAccessIterator1 ,
209
208
class _Hash = hash<typename iterator_traits<_RandomAccessIterator1>::value_type>,
210
209
class _BinaryPredicate = equal_to<>>
211
- _LIBCPP_TYPE_VIS
212
- class boyer_moore_searcher {
210
+ class _LIBCPP_TYPE_VIS boyer_moore_searcher {
213
211
private:
214
212
typedef typename std::iterator_traits<_RandomAccessIterator1>::difference_type difference_type;
215
213
typedef typename std::iterator_traits<_RandomAccessIterator1>::value_type value_type;
@@ -360,8 +358,7 @@ make_boyer_moore_searcher( _RandomAccessIterator __f, _RandomAccessIterator __l,
360
358
template <class _RandomAccessIterator1 ,
361
359
class _Hash = hash<typename iterator_traits<_RandomAccessIterator1>::value_type>,
362
360
class _BinaryPredicate = equal_to<>>
363
- _LIBCPP_TYPE_VIS
364
- class boyer_moore_horspool_searcher {
361
+ class _LIBCPP_TYPE_VIS boyer_moore_horspool_searcher {
365
362
private:
366
363
typedef typename std::iterator_traits<_RandomAccessIterator1>::difference_type difference_type;
367
364
typedef typename std::iterator_traits<_RandomAccessIterator1>::value_type value_type;
0 commit comments