summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/returnbyref.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/returnbyref.cxx')
-rw-r--r--compilerplugins/clang/returnbyref.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/returnbyref.cxx b/compilerplugins/clang/returnbyref.cxx
index 59bee67f9531..b3044f37f9a5 100644
--- a/compilerplugins/clang/returnbyref.cxx
+++ b/compilerplugins/clang/returnbyref.cxx
@@ -59,7 +59,7 @@ bool ReturnByRef::VisitCXXMethodDecl(const CXXMethodDecl * functionDecl) {
return true;
}
// Ignore stuff like:
- // operator Window *(){ return &m_rWindow; }
+ // operator vcl::Window *(){ return &m_rWindow; }
if (dyn_cast< CXXConversionDecl >( functionDecl ) != nullptr) {
return true;
}