Missing include

(for std::unique_ptr, with recent libstdc++ 12 trunk)

Change-Id: I61b7823dd740ea7cdfe0d7403a50ac73b24d1c4e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120229
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
Stephan Bergmann
2021-08-09 23:07:12 +02:00
parent 9da7b1592e
commit 43542cc07e
21 changed files with 55 additions and 0 deletions

View File

@@ -18,6 +18,10 @@
*/ */
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <chartview/ExplicitScaleValues.hxx> #include <chartview/ExplicitScaleValues.hxx>
#include <basegfx/range/b2drectangle.hxx> #include <basegfx/range/b2drectangle.hxx>

View File

@@ -14,6 +14,7 @@
// expected-no-diagnostics // expected-no-diagnostics
#else #else
#include <memory>
#include <vector> #include <vector>
#include <ostream> #include <ostream>
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>

View File

@@ -19,6 +19,10 @@
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.h>

View File

@@ -22,6 +22,7 @@
#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <memory>
#include <vector> #include <vector>
class filter_info_impl; class filter_info_impl;

View File

@@ -21,6 +21,7 @@
#include <sal/config.h> #include <sal/config.h>
#include <memory>
#include <vector> #include <vector>
#include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/XEventListener.hpp>

View File

@@ -26,6 +26,7 @@
#include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp>
#include <map> #include <map>
#include <memory>
namespace com::sun::star::uno { namespace com::sun::star::uno {
class Any; class Any;

View File

@@ -19,6 +19,10 @@
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <com/sun/star/ucb/XCommandEnvironment.hpp> #include <com/sun/star/ucb/XCommandEnvironment.hpp>
#include <salhelper/thread.hxx> #include <salhelper/thread.hxx>
#include <ucbhelper/content.hxx> #include <ucbhelper/content.hxx>

View File

@@ -11,6 +11,10 @@
#ifndef INCLUDED_OOX_CRYPTO_STRONGENCRYPTINDATASPACE_HXX #ifndef INCLUDED_OOX_CRYPTO_STRONGENCRYPTINDATASPACE_HXX
#define INCLUDED_OOX_CRYPTO_STRONGENCRYPTINDATASPACE_HXX #define INCLUDED_OOX_CRYPTO_STRONGENCRYPTINDATASPACE_HXX
#include <sal/config.h>
#include <memory>
#include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/packages/XPackageEncryption.hpp> #include <com/sun/star/packages/XPackageEncryption.hpp>

View File

@@ -18,6 +18,10 @@
*/ */
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <sfx2/dllapi.h> #include <sfx2/dllapi.h>
#include <cppuhelper/compbase.hxx> #include <cppuhelper/compbase.hxx>

View File

@@ -19,6 +19,10 @@
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <config_options.h> #include <config_options.h>
#include <svtools/svtdllapi.h> #include <svtools/svtdllapi.h>

View File

@@ -20,6 +20,10 @@
#ifndef INCLUDED_VCL_BITMAPBUFFER_HXX #ifndef INCLUDED_VCL_BITMAPBUFFER_HXX
#define INCLUDED_VCL_BITMAPBUFFER_HXX #define INCLUDED_VCL_BITMAPBUFFER_HXX
#include <sal/config.h>
#include <memory>
#include <vcl/dllapi.h> #include <vcl/dllapi.h>
#include <vcl/BitmapPalette.hxx> #include <vcl/BitmapPalette.hxx>
#include <vcl/ColorMask.hxx> #include <vcl/ColorMask.hxx>

View File

@@ -11,6 +11,10 @@
#ifndef INCLUDED_VCL_FILTER_PNGIMAGEREADER_HXX #ifndef INCLUDED_VCL_FILTER_PNGIMAGEREADER_HXX
#define INCLUDED_VCL_FILTER_PNGIMAGEREADER_HXX #define INCLUDED_VCL_FILTER_PNGIMAGEREADER_HXX
#include <sal/config.h>
#include <memory>
#include <vcl/dllapi.h> #include <vcl/dllapi.h>
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>

View File

@@ -19,6 +19,8 @@
#include <sal/config.h> #include <sal/config.h>
#include <memory>
#include <QtWidgets/QApplication> #include <QtWidgets/QApplication>
#include <boost/noncopyable.hpp> #include <boost/noncopyable.hpp>

View File

@@ -22,6 +22,8 @@
#include <sal/config.h> #include <sal/config.h>
#include <memory>
#include <com/sun/star/embed/XOLESimpleStorage.hpp> #include <com/sun/star/embed/XOLESimpleStorage.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase.hxx>

View File

@@ -35,6 +35,7 @@
// std imports // std imports
#include <cassert> #include <cassert>
#include <memory>
#include <vector> #include <vector>
#include <stack> #include <stack>
#include <tuple> #include <tuple>

View File

@@ -19,6 +19,10 @@
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/awt/XWindow.hpp>
#include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XInitialization.hpp>

View File

@@ -22,6 +22,7 @@
#include <svx/sdr/overlay/overlayobject.hxx> #include <svx/sdr/overlay/overlayobject.hxx>
#include <basegfx/range/b2drange.hxx> #include <basegfx/range/b2drange.hxx>
#include <memory>
#include <vector> #include <vector>
class SwView; class SwView;

View File

@@ -19,6 +19,10 @@
#pragma once #pragma once
#include <sal/config.h>
#include <memory>
#include <svx/sdr/overlay/overlayobject.hxx> #include <svx/sdr/overlay/overlayobject.hxx>
class SwView; class SwView;

View File

@@ -10,6 +10,9 @@
#pragma once #pragma once
#include <sal/config.h> #include <sal/config.h>
#include <memory>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase.hxx>

View File

@@ -16,6 +16,7 @@
#include <xmloff/namespacemap.hxx> #include <xmloff/namespacemap.hxx>
#include <memory>
#include <optional> #include <optional>
#include <stack> #include <stack>

View File

@@ -26,6 +26,7 @@
#include <xmloff/namespacemap.hxx> #include <xmloff/namespacemap.hxx>
#include <memory>
#include <optional> #include <optional>
#include <stack> #include <stack>