$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84448 - trunk/boost/algorithm/cxx14
From: marshall_at_[hidden]
Date: 2013-05-23 14:29:50
Author: marshall
Date: 2013-05-23 14:29:49 EDT (Thu, 23 May 2013)
New Revision: 84448
URL: http://svn.boost.org/trac/boost/changeset/84448
Log:
fixed Doxygen comment
Text files modified: 
   trunk/boost/algorithm/cxx14/mismatch.hpp |     3 +--                                     
   1 files changed, 1 insertions(+), 2 deletions(-)
Modified: trunk/boost/algorithm/cxx14/mismatch.hpp
==============================================================================
--- trunk/boost/algorithm/cxx14/mismatch.hpp	(original)
+++ trunk/boost/algorithm/cxx14/mismatch.hpp	2013-05-23 14:29:49 EDT (Thu, 23 May 2013)
@@ -17,8 +17,6 @@
 
 namespace boost { namespace algorithm {
 
-template <class InputIterator1, class InputIterator2, class BinaryPredicate>
-
 /// \fn mismatch ( InputIterator1 first1, InputIterator1 last1, 
 ///                InputIterator2 first2, InputIterator2 last2,
 ///                BinaryPredicate pred )
@@ -29,6 +27,7 @@
 /// \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 <class InputIterator1, class InputIterator2, class BinaryPredicate>
 std::pair<InputIterator1, InputIterator2> mismatch (
                                         InputIterator1 first1, InputIterator1 last1,
                                         InputIterator2 first2, InputIterator2 last2,