summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/test/simplifybool.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/test/simplifybool.cxx')
-rw-r--r--compilerplugins/clang/test/simplifybool.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/compilerplugins/clang/test/simplifybool.cxx b/compilerplugins/clang/test/simplifybool.cxx
index 75a26d22aa27..906feabee96f 100644
--- a/compilerplugins/clang/test/simplifybool.cxx
+++ b/compilerplugins/clang/test/simplifybool.cxx
@@ -8,11 +8,11 @@
*/
#include <rtl/ustring.hxx>
-// expected-note@rtl/ustring.hxx:* 2 {{the presumed corresponding negated operator is declared here [loplugin:simplifybool]}}
+// expected-note@rtl/ustring.hxx:* 2 {{the presumed corresponding negated operator for 'rtl::OUString' and 'rtl::OUString' is declared here [loplugin:simplifybool]}}
#include <rtl/string.hxx>
-// expected-note@rtl/string.hxx:* {{the presumed corresponding negated operator is declared here [loplugin:simplifybool]}}
+// expected-note@rtl/string.hxx:* {{the presumed corresponding negated operator for 'rtl::OString' and 'rtl::OString' is declared here [loplugin:simplifybool]}}
#include <basegfx/vector/b3dvector.hxx>
-// expected-note@basegfx/tuple/b3dtuple.hxx:* {{the presumed corresponding negated operator is declared here [loplugin:simplifybool]}}
+// expected-note@basegfx/tuple/b3dtuple.hxx:* {{the presumed corresponding negated operator for 'basegfx::B3DVector' and 'basegfx::B3DVector' is declared here [loplugin:simplifybool]}}
#include <map>
@@ -82,7 +82,7 @@ struct Record2
{
bool operator==(const Record2&) const;
bool operator!=(const Record2&) const;
- // expected-note@-1 {{the presumed corresponding negated operator is declared here [loplugin:simplifybool]}}
+ // expected-note@-1 {{the presumed corresponding negated operator for 'group3::Record2' and 'group3::Record2' is declared here [loplugin:simplifybool]}}
};
struct Record3
@@ -91,7 +91,7 @@ struct Record3
bool operator==(const Record3&, const Record3&);
bool operator!=(const Record3&, const Record3&);
-// expected-note@-1 {{the presumed corresponding negated operator is declared here [loplugin:simplifybool]}}
+// expected-note@-1 {{the presumed corresponding negated operator for 'group3::Record3' and 'group3::Record3' is declared here [loplugin:simplifybool]}}
void testRecord()
{