diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-10-17 15:20:31 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-10-18 11:00:04 +0200 |
commit | 7d7fea7f75524611238ce1b3546b95646cdcf359 (patch) | |
tree | 0b8f8b14ab4c35653923be643701599135b18612 /package | |
parent | 06cfc566a4734bd8d517920d3dfc210afe068295 (diff) |
make bin/update_pch.s always include code in trivial #if's
E.g. #ifdef LIBO_INTERNAL_ONLY is always true for code that builds
with our PCHs.
Change-Id: I3cf311ea3621b909105754cfea2cb0116b8b67f5
Reviewed-on: https://gerrit.libreoffice.org/80961
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/inc/pch/precompiled_package2.hxx | 10 | ||||
-rw-r--r-- | package/inc/pch/precompiled_xstor.hxx | 7 |
2 files changed, 15 insertions, 2 deletions
diff --git a/package/inc/pch/precompiled_package2.hxx b/package/inc/pch/precompiled_package2.hxx index 507670440c0b..95b191c5c86f 100644 --- a/package/inc/pch/precompiled_package2.hxx +++ b/package/inc/pch/precompiled_package2.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2019-05-12 16:56:58 using: + Generated on 2019-10-17 15:15:13 using: ./bin/update_pch package package2 --cutoff=3 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -25,6 +25,7 @@ #include <cassert> #include <cstddef> #include <cstring> +#include <initializer_list> #include <iomanip> #include <limits> #include <math.h> @@ -33,10 +34,13 @@ #include <ostream> #include <stddef.h> #include <string.h> +#include <string> +#include <string_view> #include <type_traits> #include <unordered_map> #include <utility> #include <vector> +#include <zlib.h> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 #include <osl/diagnose.h> @@ -62,6 +66,7 @@ #include <rtl/strbuf.hxx> #include <rtl/string.h> #include <rtl/string.hxx> +#include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> @@ -117,6 +122,7 @@ #include <comphelper/comphelperdllapi.h> #include <comphelper/processfactory.hxx> #include <comphelper/sequence.hxx> +#include <comphelper/servicehelper.hxx> #include <comphelper/storagehelper.hxx> #include <cppu/cppudllapi.h> #include <cppu/unotype.hxx> @@ -133,6 +139,7 @@ #include <o3tl/underlyingenumvalue.hxx> #include <salhelper/salhelperdllapi.h> #include <salhelper/simplereferenceobject.hxx> +#include <tools/diagnose_ex.h> #include <tools/toolsdllapi.h> #include <typelib/typeclass.h> #include <typelib/typedescription.h> @@ -146,6 +153,7 @@ #include <EncryptedDataHeader.hxx> #include <EncryptionData.hxx> #include <PackageConstants.hxx> +#include <ThreadedDeflater.hxx> #include <ZipEntry.hxx> #include <ZipEnumeration.hxx> #include <ZipFile.hxx> diff --git a/package/inc/pch/precompiled_xstor.hxx b/package/inc/pch/precompiled_xstor.hxx index e6cb9613f99e..1c6b3821718d 100644 --- a/package/inc/pch/precompiled_xstor.hxx +++ b/package/inc/pch/precompiled_xstor.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2019-05-12 16:56:58 using: + Generated on 2019-10-17 15:15:14 using: ./bin/update_pch package xstor --cutoff=2 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -31,6 +31,9 @@ #include <ostream> #include <stddef.h> #include <string.h> +#include <string> +#include <string_view> +#include <type_traits> #include <utility> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 @@ -44,6 +47,7 @@ #include <rtl/instance.hxx> #include <rtl/string.h> #include <rtl/string.hxx> +#include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> @@ -83,6 +87,7 @@ #include <comphelper/comphelperdllapi.h> #include <comphelper/ofopxmlhelper.hxx> #include <comphelper/processfactory.hxx> +#include <comphelper/sequence.hxx> #include <comphelper/storagehelper.hxx> #include <cppu/cppudllapi.h> #include <cppu/unotype.hxx> |