basegfx/source/polygon/b2dpolypolygon.cxx | 4 ++++ basegfx/source/polygon/b3dpolygon.cxx | 1 + basegfx/source/polygon/b3dpolypolygon.cxx | 1 + 3 files changed, 6 insertions(+)
New commits: commit e86734315c24d030f6cd9e8914c743a44ba35bd6 Author: Stephan Bergmann <sberg...@redhat.com> AuthorDate: Mon Dec 20 16:47:02 2021 +0100 Commit: Stephan Bergmann <sberg...@redhat.com> CommitDate: Mon Dec 20 20:10:04 2021 +0100 Missing inlcude (for std::as_const) (presumably since 807f238f12e0774fabf507a17ca0ba9204d47833 "Recheck include/[e-r]* with IWYU") Change-Id: I188edd1e9cea0bc2ca65cc834b94aa9c0913c0ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127187 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sberg...@redhat.com> diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx index 13724164ff2f..4fd12bde4a10 100644 --- a/basegfx/source/polygon/b2dpolypolygon.cxx +++ b/basegfx/source/polygon/b2dpolypolygon.cxx @@ -17,6 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <utility> + #include <basegfx/polygon/b2dpolypolygon.hxx> #include <osl/diagnose.h> #include <basegfx/polygon/b2dpolygon.hxx> diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx index a14b9f3887b8..c1ee4b08345a 100644 --- a/basegfx/source/polygon/b3dpolygon.cxx +++ b/basegfx/source/polygon/b3dpolygon.cxx @@ -26,6 +26,7 @@ #include <basegfx/matrix/b2dhommatrix.hxx> #include <cassert> #include <memory> +#include <utility> #include <vector> #include <algorithm> diff --git a/basegfx/source/polygon/b3dpolypolygon.cxx b/basegfx/source/polygon/b3dpolypolygon.cxx index e7334af42874..017906eef5b8 100644 --- a/basegfx/source/polygon/b3dpolypolygon.cxx +++ b/basegfx/source/polygon/b3dpolypolygon.cxx @@ -22,6 +22,7 @@ #include <basegfx/polygon/b3dpolygon.hxx> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b3dhommatrix.hxx> +#include <utility> #include <vector> class ImplB3DPolyPolygon