From 3e5f571230011469c577506058aa1c99a8d9d0c6 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Thu, 23 May 2013 18:29:49 +0000 Subject: [PATCH] fixed Doxygen comment [SVN r84448] --- include/boost/algorithm/cxx14/mismatch.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/algorithm/cxx14/mismatch.hpp b/include/boost/algorithm/cxx14/mismatch.hpp index 5229e3b..c45fded 100644 --- a/include/boost/algorithm/cxx14/mismatch.hpp +++ b/include/boost/algorithm/cxx14/mismatch.hpp @@ -17,8 +17,6 @@ namespace boost { namespace algorithm { -template - /// \fn mismatch ( InputIterator1 first1, InputIterator1 last1, /// InputIterator2 first2, InputIterator2 last2, /// BinaryPredicate pred ) @@ -29,6 +27,7 @@ template /// \param first2 The start of the second range. /// \param last2 One past the end of the second range. /// \param pred A predicate for comparing the elements of the ranges +template std::pair mismatch ( InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2,