More #define _HAS_ITERATOR_DEBUGGING 0 to fix _DEBUG MSVC builds

This commit is contained in:
Tor Lillqvist
2011-08-26 23:24:04 +03:00
parent 10f30ae4c8
commit a647a54cd1
3 changed files with 8 additions and 0 deletions

View File

@@ -26,10 +26,12 @@
*
************************************************************************/
#ifdef _MSC_VER
// Avoid problem due to dubious std::equal_range usage when building
// with MSVC in --enable-dbgutil mode (i.e. _DEBUG defined, using the
// debugging C/C++ runtime)
#define _HAS_ITERATOR_DEBUGGING 0
#endif
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_connectivity.hxx"

View File

@@ -26,7 +26,9 @@
*
************************************************************************/
#ifdef _MSC_VER
#define _HAS_ITERATOR_DEBUGGING 0
#endif
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_fpicker.hxx"

View File

@@ -26,6 +26,10 @@
*
************************************************************************/
#ifdef _MSC_VER
#define _HAS_ITERATOR_DEBUGGING 0
#endif
#include "oox/helper/containerhelper.hxx"
#include <com/sun/star/container/XIndexContainer.hpp>