summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compilerplugins/clang/test/writeonlyvars.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/compilerplugins/clang/test/writeonlyvars.cxx b/compilerplugins/clang/test/writeonlyvars.cxx
index 719ad26ea870..740befb6f172 100644
--- a/compilerplugins/clang/test/writeonlyvars.cxx
+++ b/compilerplugins/clang/test/writeonlyvars.cxx
@@ -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: */