diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-26 13:08:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-26 14:34:30 +0100 |
commit | 34082fa5a8e389d71e099ae5563a6268d401c278 (patch) | |
tree | 4af3356744cc8f8fea8f6cbd856f00afd004a97f /compilerplugins | |
parent | 01f3b95884ab652a61a621a0c9dc3e2e0b7c3e4b (diff) |
Silence -Werror=comment about a "multi-line comment"
Change-Id: I19f09c7d253bb86bbe3b10083f762a5791e2f370
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/override.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
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 "\<NL>" is followed directly by a real token without // intervening whitespace, tokens "\<NL>virtual" and "\<NL>{" are |