diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-09-05 08:09:08 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-09-05 08:15:56 +0300 |
commit | 68795fe0dce69183400f775e06a2651565657231 (patch) | |
tree | ce9970cef662930f7abbbbe16b13d4222f1cd5ba /sw | |
parent | 0bf8fd627afc8567ae8ec6fad8edf20a11f143ad (diff) |
#define _HAS_ITERATOR_DEBUGGING 0 to fix --enable-dbgutil MSVC compilation
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/crsr/crbm.cxx | 4 | ||||
-rw-r--r-- | sw/source/core/doc/docbm.cxx | 4 | ||||
-rw-r--r-- | sw/source/core/unocore/unoportenum.cxx | 5 | ||||
-rw-r--r-- | sw/source/filter/writer/writer.cxx | 5 |
4 files changed, 17 insertions, 1 deletions
diff --git a/sw/source/core/crsr/crbm.cxx b/sw/source/core/crsr/crbm.cxx index 33a2c686ebaa..e5ce3347b2c7 100644 --- a/sw/source/core/crsr/crbm.cxx +++ b/sw/source/core/crsr/crbm.cxx @@ -26,6 +26,10 @@ * ************************************************************************/ +#ifdef _MSC_VER +#define _HAS_ITERATOR_DEBUGGING 0 +#endif + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sw.hxx" diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx index b88de101ab44..e667e203872e 100644 --- a/sw/source/core/doc/docbm.cxx +++ b/sw/source/core/doc/docbm.cxx @@ -26,6 +26,10 @@ * ************************************************************************/ +#ifdef _MSC_VER +#define _HAS_ITERATOR_DEBUGGING 0 +#endif + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sw.hxx" diff --git a/sw/source/core/unocore/unoportenum.cxx b/sw/source/core/unocore/unoportenum.cxx index 73c54a902029..42e6c9681934 100644 --- a/sw/source/core/unocore/unoportenum.cxx +++ b/sw/source/core/unocore/unoportenum.cxx @@ -26,10 +26,13 @@ * ************************************************************************/ +#ifdef _MSC_VER +#define _HAS_ITERATOR_DEBUGGING 0 +#endif + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sw.hxx" - #include <unoport.hxx> #include <IMark.hxx> // #i81002# diff --git a/sw/source/filter/writer/writer.cxx b/sw/source/filter/writer/writer.cxx index b5fdfb836b8b..47dc806c66b7 100644 --- a/sw/source/filter/writer/writer.cxx +++ b/sw/source/filter/writer/writer.cxx @@ -26,8 +26,13 @@ * ************************************************************************/ +#ifdef _MSC_VER +#define _HAS_ITERATOR_DEBUGGING 0 +#endif + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sw.hxx" + #include <hintids.hxx> #define _SVSTDARR_STRINGSSORTDTOR |