From 34082fa5a8e389d71e099ae5563a6268d401c278 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 26 Feb 2016 13:08:00 +0100 Subject: Silence -Werror=comment about a "multi-line comment" Change-Id: I19f09c7d253bb86bbe3b10083f762a5791e2f370 --- compilerplugins/clang/override.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'compilerplugins') diff --git a/compilerplugins/clang/override.cxx b/compilerplugins/clang/override.cxx index b4c4b6e036f5..d44af962276c 100644 --- a/compilerplugins/clang/override.cxx +++ b/compilerplugins/clang/override.cxx @@ -97,14 +97,14 @@ bool Override::VisitCXXMethodDecl(CXXMethodDecl const * decl) { //TODO: Looks like a Clang bug that in some cases like // (filter/source/svg/svgexport.cxx) // - // #define TEXT_FIELD_GET_CLASS_NAME_METHOD( class_name ) \ - // virtual OUString getClassName() const \ - // { \ - // static const char className[] = #class_name; \ - // return OUString( className ); \ - // } - // - // TEXT_FIELD_GET_CLASS_NAME_METHOD( TextField ) + // | #define TEXT_FIELD_GET_CLASS_NAME_METHOD( class_name ) \ | + // | virtual OUString getClassName() const \ | + // | { \ | + // | static const char className[] = #class_name; \ | + // | return OUString( className ); \ | + // | } | + // | | + // | TEXT_FIELD_GET_CLASS_NAME_METHOD( TextField ) | // // where "\" is followed directly by a real token without // intervening whitespace, tokens "\virtual" and "\{" are -- cgit