diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2021-06-19 23:05:03 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2021-06-20 17:30:27 +0200 |
commit | 30a17b05fb8a860c1e53cb7cfc405b1cea0a9d15 (patch) | |
tree | 93d60194d752665c2b426ad432d4473e54496a75 | |
parent | 6a1dea1d7a1c7ede887c66e6fd2ddecedf5404b9 (diff) |
Include the header to workaround MSVC bug (shows with disabled pch)
https://developercommunity.visualstudio.com/t/error-c2027-use-of-undefined-type-with-declspecdll/1455069
[build CXX] oox/source/core/filterbase.cxx
C:\lo\src\core\include\rtl/ref.hxx(129): error C2027: use of undefined type 'OutputDevice'
C:\lo\src\core\include\oox/helper/graphichelper.hxx(50): note: see declaration of 'OutputDevice'
C:\lo\src\core\include\rtl/ref.hxx(127): note: while compiling class template member function 'rtl::Reference<reference_type>::~Reference(void)'
with
[
reference_type=OutputDevice
]
C:\lo\src\core\include\vcl/vclptr.hxx(216): note: see reference to function template instantiation 'rtl::Reference<reference_type>::~Reference(void)' being comp
iled
with
[
reference_type=OutputDevice
]
C:\lo\src\core\include\vcl/vclptr.hxx(64): note: see reference to class template instantiation 'rtl::Reference<reference_type>' being compiled
with
[
reference_type=OutputDevice
]
C:\lo\src\core\include\oox/helper/graphichelper.hxx(140): note: see reference to class template instantiation 'VclPtr<OutputDevice>' being compiled
make[1]: *** [C:/lo/src/core/solenv/gbuild/LinkTarget.mk:301: C:/lo/src/build/workdir/CxxObject/oox/source/core/filterbase.o] Error 2
Change-Id: I50ee1bf97b7075224525525ef074c0ffcc168485
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117507
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r-- | include/oox/helper/graphichelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oox/helper/graphichelper.hxx b/include/oox/helper/graphichelper.hxx index 6e6a255d9bd6..7735a15306a8 100644 --- a/include/oox/helper/graphichelper.hxx +++ b/include/oox/helper/graphichelper.hxx @@ -32,6 +32,7 @@ #include <sal/types.h> #include <com/sun/star/graphic/XGraphicProvider2.hpp> #include <com/sun/star/graphic/XGraphicMapper.hpp> +#include <vcl/outdev.hxx> // Workaround for MSVC bug - can't forward-declare OutputDevice #include <vcl/vclptr.hxx> struct WmfExternal; @@ -47,7 +48,6 @@ namespace com::sun::star { namespace graphic { class XGraphicProvider; } namespace uno { class XComponentContext; } } -class OutputDevice; namespace oox { |