Kaydet (Commit) 5f0f3d4e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Work around -Werror,-Wdeprecated-register

Change-Id: I501bda18e33939c0becc13dcdf27cd96e33d7331
üst 3de1e67e
......@@ -22,7 +22,19 @@
#include <xmloff/xmlictxt.hxx>
#include <unotools/charclass.hxx>
#include <swtypes.hxx>
#if defined __clang__
#if __has_warning("-Wdeprecated-register")
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-register"
#endif
#endif
#include <tokens.cxx>
#if defined __clang__
#if __has_warning("-Wdeprecated-register")
#pragma GCC diagnostic pop
#endif
#endif
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment