include/comphelper/errcode.hxx | 1 + sc/source/core/data/dptabsrc.cxx | 1 + 2 files changed, 2 insertions(+)
New commits: commit 0084c2b22ce26084df5a379135ba8ac174585ac0 Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Mon Jun 9 22:07:46 2025 +0200 Commit: Stephan Bergmann <stephan.bergm...@allotropia.de> CommitDate: Tue Jun 10 07:28:49 2025 +0200 Missing include (for LONG_MAX) Change-Id: I8f03310ab1b5da503670f77bf9c5211e956dd48c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186305 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de> diff --git a/sc/source/core/data/dptabsrc.cxx b/sc/source/core/data/dptabsrc.cxx index ad8f2490f2ba..61123f89cd8a 100644 --- a/sc/source/core/data/dptabsrc.cxx +++ b/sc/source/core/data/dptabsrc.cxx @@ -20,6 +20,7 @@ #include <dptabsrc.hxx> #include <algorithm> +#include <climits> #include <vector> #include <comphelper/sequence.hxx> commit 6ebc3c540f2aa13363e3dcb32a44bfa2c7f66a9f Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Mon Jun 9 21:03:40 2025 +0200 Commit: Stephan Bergmann <stephan.bergm...@allotropia.de> CommitDate: Tue Jun 10 07:28:40 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> 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>