diff options
author | Martin Jambor <mjambor@suse.cz> | 2023-06-07 18:11:45 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-06-08 08:25:47 +0200 |
commit | db98a3f1b1a703ea8e1284b8815eea2274abb2db (patch) | |
tree | 270d0d6861103a248d5671f88edc43cb53deeced /store/source/storbase.hxx | |
parent | 5aefe9d1cb72f94cd6999a489860270f8432a637 (diff) |
Add cstdlib include necessary to build with gcc14 libstdc++ (tdf#155715)
Without explicitely including <cstdlib>, compiling some files
including store/source/storbase.hxx (such as store/source/storpage.cxx
which includes it through store/source/storpage.hxx) will result in
errors:
error: ‘malloc’ is not a member of ‘std’
and
error: ‘free’ is not a member of ‘std’
This patch simply adds the necessary include.
Change-Id: I3d1fa2a17c5ae9d512f1de9d434dac3d82fc353f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152712
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'store/source/storbase.hxx')
-rw-r--r-- | store/source/storbase.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index feac0db96227..207cbf40a8d3 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -32,6 +32,7 @@ #include <store/types.h> +#include <cstdlib> #include <memory> #include <utility> |