diff options
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/source/preload.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/javaunohelper/source/preload.cxx b/javaunohelper/source/preload.cxx index 4868a1e55f5e..f73b44b34647 100644 --- a/javaunohelper/source/preload.cxx +++ b/javaunohelper/source/preload.cxx @@ -19,7 +19,14 @@ #include <sal/config.h> +#if defined __clang__ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunknown-attributes" +#endif #include <jni.h> +#if defined __clang__ +#pragma clang diagnostic pop +#endif #include <rtl/ustring.hxx> #include <osl/module.hxx> |