From e3c63fce12a7a949106f04f251528c27bd81445b Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Fri, 17 May 2013 17:50:16 +0000 Subject: [PATCH] Move documentation to the constructor. Fixes a -Wdocumentation warning git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182134 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ASTMatchers/Dynamic/Marshallers.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/ASTMatchers/Dynamic/Marshallers.h b/lib/ASTMatchers/Dynamic/Marshallers.h index e75a175738..a41ed24998 100644 --- a/lib/ASTMatchers/Dynamic/Marshallers.h +++ b/lib/ASTMatchers/Dynamic/Marshallers.h @@ -71,13 +71,12 @@ public: }; /// \brief Simple callback implementation. Marshaller and function are provided. -/// -/// \param Marshaller Function to unpack the arguments and call \c Func -/// \param Func Matcher construct function. This is the function that -/// compile-time matcher expressions would use to create the matcher. template class FixedArgCountMatcherCreateCallback : public MatcherCreateCallback { public: + /// \param Marshaller Function to unpack the arguments and call \c Func + /// \param Func Matcher construct function. This is the function that + /// compile-time matcher expressions would use to create the matcher. FixedArgCountMatcherCreateCallback(MarshallerType Marshaller, FuncType Func, StringRef MatcherName) : Marshaller(Marshaller), Func(Func), MatcherName(MatcherName.str()) {}