diff options
Diffstat (limited to 'compilerplugins/clang/test/unoany.cxx')
-rw-r--r-- | compilerplugins/clang/test/unoany.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compilerplugins/clang/test/unoany.cxx b/compilerplugins/clang/test/unoany.cxx index 15c4b3ae2436..b5d91007f80f 100644 --- a/compilerplugins/clang/test/unoany.cxx +++ b/compilerplugins/clang/test/unoany.cxx @@ -22,7 +22,6 @@ int main() css::uno::Any b; a = b; a = getAny(); - a = css::uno::makeAny(true); // expected-error {{unnecessary copy, rather use <<= operator directly with the 'makeAny' argument [loplugin:unoany]}} a = css::uno::Any(true); // expected-error {{unnecessary copy, rather use <<= operator directly with the 'Any' constructor argument [loplugin:unoany]}} } |