include/comphelper/errcode.hxx | 1 + sax/source/tools/converter.cxx | 1 + 2 files changed, 2 insertions(+)
New commits: commit 44d66d4ddb507cca76b71dbd25ca1ae323b866d0 Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Mon Jun 9 21:05:19 2025 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Tue Jun 10 10:22:29 2025 +0200 Missing include (for SHRT_MIN/MAX) Change-Id: I1755b440515724315aa2e540fe3de4a473371dc4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186304 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de> (cherry picked from commit 19c32b44fead600118377417012b111a4f238766) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186315 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx index c026e35d770a..f27fc325e26d 100644 --- a/sax/source/tools/converter.cxx +++ b/sax/source/tools/converter.cxx @@ -39,6 +39,7 @@ #include <tools/time.hxx> #include <algorithm> +#include <climits> #include <map> #include <string_view> commit d580a05e32cca7a51513c920cd86b6d5b310b52c Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Mon Jun 9 21:03:40 2025 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Tue Jun 10 10:22:22 2025 +0200 Missing include (for USHRT_MAX) Change-Id: I9d2a59fd198679c2a7a7ce124e2548f2add61d6d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186303 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de> (cherry picked from commit 6ebc3c540f2aa13363e3dcb32a44bfa2c7f66a9f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186313 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/include/comphelper/errcode.hxx b/include/comphelper/errcode.hxx index 865ab5538897..3adc6ecdf790 100644 --- a/include/comphelper/errcode.hxx +++ b/include/comphelper/errcode.hxx @@ -21,6 +21,7 @@ #include <config_options.h> #include <rtl/ustring.hxx> #include <comphelper/comphelperdllapi.h> +#include <climits> #include <ostream> #include <o3tl/typed_flags_set.hxx> #include <optional>