From 1c963dac313fe0d66ce884ec82df122dd9f9bf6f Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Sun, 7 Mar 2004 17:22:58 +0000 Subject: [PATCH] unnecessary semicolons removed [SVN r22456] --- include/boost/algorithm/string/detail/sequence.hpp | 2 +- include/boost/algorithm/string/iter_find.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/algorithm/string/detail/sequence.hpp b/include/boost/algorithm/string/detail/sequence.hpp index e2f60fc..2d5602c 100644 --- a/include/boost/algorithm/string/detail/sequence.hpp +++ b/include/boost/algorithm/string/detail/sequence.hpp @@ -163,7 +163,7 @@ namespace boost { { replace_native_helper< has_native_replace::value >()( Input, From, To, Begin, End ); - }; + } template< typename InputT, typename InsertT > inline void replace( diff --git a/include/boost/algorithm/string/iter_find.hpp b/include/boost/algorithm/string/iter_find.hpp index 2bcbd0f..0469f62 100644 --- a/include/boost/algorithm/string/iter_find.hpp +++ b/include/boost/algorithm/string/iter_find.hpp @@ -91,7 +91,7 @@ namespace boost { Result.swap(Tmp); return Result; - }; + } // iterate split ---------------------------------------------------// @@ -151,7 +151,7 @@ namespace boost { Result.swap(Tmp); return Result; - }; + } } // namespace algorithm