store/source/lockbyte.cxx | 1 + store/source/storbase.hxx | 1 + 2 files changed, 2 insertions(+)
New commits: commit d4a24b61ec4d35aa41f49ffba85cd32154c25dbd Author: Tor Lillqvist <[email protected]> AuthorDate: Thu Apr 30 13:05:28 2020 +0300 Commit: Tor Lillqvist <[email protected]> CommitDate: Fri May 1 15:33:56 2020 +0200 Include <cstdlib> for std::malloc() and std::free() Change-Id: Ice6964858f39709dfd7e55ed8d7fe2d71da6acad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93205 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tor Lillqvist <[email protected]> diff --git a/store/source/lockbyte.cxx b/store/source/lockbyte.cxx index 20740b43804a..bb9b800a869a 100644 --- a/store/source/lockbyte.cxx +++ b/store/source/lockbyte.cxx @@ -30,6 +30,7 @@ #include "object.hxx" #include "storbase.hxx" +#include <cstdlib> #include <memory> #include <string.h> diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index accfdf7d73f9..08a9b43e124b 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -34,6 +34,7 @@ #include <store/types.h> +#include <cstdlib> #include <memory> #include <stddef.h> #include <string.h> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
