@@ -49,8 +49,8 @@ struct boyer_moore_finder
4949 }
5050
5151private:
52- boyer_moore_finder (boyer_moore_finder const &);
53- boyer_moore_finder &operator =(boyer_moore_finder const &);
52+ BOOST_DELETED_FUNCTION ( boyer_moore_finder(boyer_moore_finder const &))
53+ BOOST_DELETED_FUNCTION ( boyer_moore_finder &operator =(boyer_moore_finder const &))
5454
5555 boyer_moore<BidiIter, Traits> bm_;
5656};
@@ -79,8 +79,8 @@ struct hash_peek_finder
7979 }
8080
8181private:
82- hash_peek_finder (hash_peek_finder const &);
83- hash_peek_finder &operator =(hash_peek_finder const &);
82+ BOOST_DELETED_FUNCTION ( hash_peek_finder(hash_peek_finder const &))
83+ BOOST_DELETED_FUNCTION ( hash_peek_finder &operator =(hash_peek_finder const &))
8484
8585 template <typename ICase>
8686 BidiIter find_ (BidiIter begin, BidiIter end, Traits const &tr, ICase) const
@@ -134,8 +134,8 @@ struct line_start_finder
134134 }
135135
136136private:
137- line_start_finder (line_start_finder const &);
138- line_start_finder &operator =(line_start_finder const &);
137+ BOOST_DELETED_FUNCTION ( line_start_finder(line_start_finder const &))
138+ BOOST_DELETED_FUNCTION ( line_start_finder &operator =(line_start_finder const &))
139139
140140 char_class_type newline_;
141141};
@@ -184,8 +184,8 @@ struct line_start_finder<BidiIter, Traits, 1u>
184184 }
185185
186186private:
187- line_start_finder (line_start_finder const &);
188- line_start_finder &operator =(line_start_finder const &);
187+ BOOST_DELETED_FUNCTION ( line_start_finder(line_start_finder const &))
188+ BOOST_DELETED_FUNCTION ( line_start_finder &operator =(line_start_finder const &))
189189
190190 bool bits_[256 ];
191191};
@@ -208,8 +208,8 @@ struct leading_simple_repeat_finder
208208 }
209209
210210private:
211- leading_simple_repeat_finder (leading_simple_repeat_finder const &);
212- leading_simple_repeat_finder &operator =(leading_simple_repeat_finder const &);
211+ BOOST_DELETED_FUNCTION ( leading_simple_repeat_finder(leading_simple_repeat_finder const &))
212+ BOOST_DELETED_FUNCTION ( leading_simple_repeat_finder &operator =(leading_simple_repeat_finder const &))
213213};
214214
215215}}}
0 commit comments