bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx | 4 ++++ bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx | 1 + 2 files changed, 5 insertions(+)
New commits: commit b3fa6e6e65031f92d7f13b44f8422fe4aa07e2f9 Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Thu Feb 8 19:38:45 2024 +0100 Commit: Thorsten Behrens <thorsten.behr...@allotropia.de> CommitDate: Fri Feb 9 01:36:54 2024 +0100 Fix missing includes ...after f93ae0455c4d515be1ca663725a6e58d64a7e393 "Check bridges with IWYU" Change-Id: I01ca7b015cb9f4fc1dbff099c52e8240e1517270 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163126 Tested-by: Thorsten Behrens <thorsten.behr...@allotropia.de> Reviewed-by: Thorsten Behrens <thorsten.behr...@allotropia.de> diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx index eb57c2ac92c5..14673ab7d5e2 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx @@ -35,6 +35,10 @@ #include "call.hxx" #include "share.hxx" +#if !ENABLE_RUNTIME_OPTIMIZATIONS +#include "rtti.hxx" +#endif + using namespace ::com::sun::star::uno; // Perform the UNO call diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx index eeff17303990..adcf9da801d1 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx @@ -37,6 +37,7 @@ #include <o3tl/string_view.hxx> #include "rtti.hxx" +#include "share.hxx" namespace {