summaryrefslogtreecommitdiff
path: root/compilerplugins/clang
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang')
-rw-r--r--compilerplugins/clang/refcounting.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/refcounting.cxx b/compilerplugins/clang/refcounting.cxx
index bcfc11bb5bbc..ffbe478300d9 100644
--- a/compilerplugins/clang/refcounting.cxx
+++ b/compilerplugins/clang/refcounting.cxx
@@ -340,7 +340,8 @@ void RefCounting::checkUnoReference(QualType qt, const Decl* decl, const std::st
DiagnosticsEngine::Warning,
"uno::Reference " + rDeclName + " with template parameter that does not contain ::static_type() "
+ qt.getAsString()
- + ", parent is " + rParentName,
+ + ", parent is " + rParentName
+ + ", should probably be using rtl::Reference instead"
decl->getLocation())
<< decl->getSourceRange();
}