compilerplugins/clang/dbgunhandledexception.cxx | 1 + compilerplugins/clang/elidestringvar.cxx | 1 + 2 files changed, 2 insertions(+)
New commits: commit d44784a24a8ff2a6f92618585b786192ef55a6ab Author: Stephan Bergmann <[email protected]> AuthorDate: Tue Jun 25 14:34:14 2024 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Jun 26 13:31:14 2024 +0200 Missing includes Change-Id: I519cdb9b5a1c475a1d36293b77c85c250baf3c3f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169520 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/compilerplugins/clang/dbgunhandledexception.cxx b/compilerplugins/clang/dbgunhandledexception.cxx index e6c1f157cc9d..699297b5a248 100644 --- a/compilerplugins/clang/dbgunhandledexception.cxx +++ b/compilerplugins/clang/dbgunhandledexception.cxx @@ -16,6 +16,7 @@ #include <clang/Lex/Lexer.h> #include <fstream> #include <set> +#include <stack> namespace loplugin { diff --git a/compilerplugins/clang/elidestringvar.cxx b/compilerplugins/clang/elidestringvar.cxx index c14eaf027b0f..097120463ea0 100644 --- a/compilerplugins/clang/elidestringvar.cxx +++ b/compilerplugins/clang/elidestringvar.cxx @@ -12,6 +12,7 @@ #include <algorithm> #include <cassert> #include <map> +#include <stack> #include "check.hxx" #include "compat.hxx"
