From a441d5fbe59436089e5f7b882a3482212c9ee208 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 4 May 2015 13:25:38 +0300 Subject: Include early to be sure to get SIZE_MAX Turns out that at least with the glibc version I have on openSUSE 12.3, whether defines SIZE_MAX and friends or not depends on whether __STDC_LIMIT_MACROS is defined, and that gets defined (in our case) only when gets included through some boost include file, or through . In the case of this compilation unit, apparently gets included directly somewhere before SIZE_MAX is used in sw/inc/docary.hxx. Possibly a better fix would be to make sure we include everywhere and not . That wouldn't help in case it is through some 3rd-party C library include file that the gets included, though. This reverts commit 8e6527a97bc6f05c5db9f0485089b5cde97531fe Change-Id: I200985ee70eaf90fc3fa9341fdf9d657750e49ee --- sw/inc/docary.hxx | 3 +-- sw/source/ui/frmdlg/column.cxx | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sw/inc/docary.hxx b/sw/inc/docary.hxx index 45c485a40d92..386bf5135442 100644 --- a/sw/inc/docary.hxx +++ b/sw/inc/docary.hxx @@ -23,7 +23,6 @@ #include #include #include -#include #include class SwRangeRedline; @@ -103,7 +102,7 @@ public: size_t GetPos(Value const& p) const { const_iterator const it = std::find(begin(), end(), p); - return it == end() ? SAL_MAX_SIZE : it - begin(); + return it == end() ? SIZE_MAX : it - begin(); } bool Contains(Value const& p) const diff --git a/sw/source/ui/frmdlg/column.cxx b/sw/source/ui/frmdlg/column.cxx index ff77810422ba..bada3de87a31 100644 --- a/sw/source/ui/frmdlg/column.cxx +++ b/sw/source/ui/frmdlg/column.cxx @@ -17,6 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include + #include "column.hxx" #include "hintids.hxx" -- cgit