diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-12-20 16:47:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-12-20 20:10:04 +0100 |
commit | e86734315c24d030f6cd9e8914c743a44ba35bd6 (patch) | |
tree | d8d3b9fdc12ffc43d4c8b97514c6dbdad6c2848f /basegfx | |
parent | a65d126a2f68c1a157d4eee1090620b82da6e575 (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygon.cxx | 4 | ||||
-rw-r--r-- | basegfx/source/polygon/b3dpolygon.cxx | 1 | ||||
-rw-r--r-- | basegfx/source/polygon/b3dpolypolygon.cxx | 1 |
3 files changed, 6 insertions, 0 deletions
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 |