diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-23 12:24:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-23 12:29:36 +0300 |
commit | 6c1e8719013b47ff3d3954173a17e49f3a361009 (patch) | |
tree | f1126c01ebb01a641a47f7c7b89dd491694e1e01 /fpicker/source/office | |
parent | 85bee97305cc4b411c7dccbba6e4157f7985bb74 (diff) |
Avoid compilation error in dbgutil (_DEBUG) MSVC build
Define _HAS_ITERATOR_DEBUGGING as 0 so that we don't use the debugging
ordering predicates, which cause compilation errors thanks to the way
we use std::equal_range(). In this case it seemed fairly hairy to fix
that, so...
Diffstat (limited to 'fpicker/source/office')
-rw-r--r-- | fpicker/source/office/OfficeControlAccess.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx index 50632bf89d95..74bd77b8cd35 100644 --- a/fpicker/source/office/OfficeControlAccess.cxx +++ b/fpicker/source/office/OfficeControlAccess.cxx @@ -26,6 +26,8 @@ * ************************************************************************/ +#define _HAS_ITERATOR_DEBUGGING 0 + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_fpicker.hxx" |