diff options
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/test/locking2.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compilerplugins/clang/test/locking2.cxx b/compilerplugins/clang/test/locking2.cxx index 3ef1a11228b6..5e6c36d4db26 100644 --- a/compilerplugins/clang/test/locking2.cxx +++ b/compilerplugins/clang/test/locking2.cxx @@ -7,6 +7,10 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#if defined _WIN32 //TODO, #include <sys/file.h> +// expected-no-diagnostics +#else + #include <mutex> #include <memory> #include <osl/mutex.hxx> @@ -47,4 +51,6 @@ struct Foo }; } +#endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |