loplugin:writeonlyvars is no-op on Windows, so don't run its test there
But nevertheless, make sure that the variables m_bar9/10 used in combination with css::uno::Any have UNO-compatible type. Change-Id: I4e9915193386278ace128df94f7722d90b2567f2 Reviewed-on: https://gerrit.libreoffice.org/68195 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
@@ -7,6 +7,10 @@
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
#if defined _WIN32 //TODO, see corresponding TODO in compilerplugins/clang/writeonlyvars.cxx
|
||||
// expected-no-diagnostics
|
||||
#else
|
||||
|
||||
#include <vector>
|
||||
#include <ostream>
|
||||
#include <com/sun/star/uno/Any.hxx>
|
||||
@@ -62,14 +66,14 @@ void test()
|
||||
|
||||
// check that we don't see reads when calling operator>>=
|
||||
// expected-error@+1 {{write m_bar9 [loplugin:writeonlyvars]}}
|
||||
int m_bar9;
|
||||
sal_Int32 m_bar9;
|
||||
// expected-error@+1 {{read any [loplugin:writeonlyvars]}}
|
||||
css::uno::Any any;
|
||||
any >>= m_bar9;
|
||||
|
||||
// check that we see don't see writes when calling operator<<=
|
||||
// expected-error@+1 {{read m_bar10 [loplugin:writeonlyvars]}}
|
||||
int m_bar10;
|
||||
sal_Int32 m_bar10;
|
||||
// expected-error@+2 {{write any2 [loplugin:writeonlyvars]}}
|
||||
// expected-error@+1 {{read any2 [loplugin:writeonlyvars]}}
|
||||
css::uno::Any any2;
|
||||
@@ -144,4 +148,6 @@ void ReadOnlyAnalysis4()
|
||||
x = m_readonlyCss.getArray()[0];
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|
||||
|
Reference in New Issue
Block a user