summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorGabor Kelemen <kelemen.gabor2@nisz.hu>2020-10-31 14:28:47 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-11-05 14:57:25 +0100
commit0505a00a9ba827e39338b295ab6f73743d5c80b9 (patch)
tree0cee285db5b06b7271c94bec78fae814ad57c866 /basegfx
parenta129f3b20bd8e28c931e5318d981daa51af067d3 (diff)
tdf#42949 Fix new IWYU warnings in directories [ab]*
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: Ib0008b9bb095f27e5e436d6b507dc709ab7bf01a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105313 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/color/bcolormodifier.cxx1
-rw-r--r--basegfx/source/numeric/ftools.cxx1
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx1
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx1
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx2
-rw-r--r--basegfx/source/polygon/b3dpolygontools.cxx2
-rw-r--r--basegfx/source/polygon/b3dpolypolygontools.cxx1
-rw-r--r--basegfx/source/range/b2drangeclipper.cxx2
8 files changed, 3 insertions, 8 deletions
diff --git a/basegfx/source/color/bcolormodifier.cxx b/basegfx/source/color/bcolormodifier.cxx
index 5cf2a5a86c80..1002e607f6d2 100644
--- a/basegfx/source/color/bcolormodifier.cxx
+++ b/basegfx/source/color/bcolormodifier.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <config_options.h>
#include <sal/config.h>
#include <algorithm>
diff --git a/basegfx/source/numeric/ftools.cxx b/basegfx/source/numeric/ftools.cxx
index d1eca66ca2fc..246d8d548aac 100644
--- a/basegfx/source/numeric/ftools.cxx
+++ b/basegfx/source/numeric/ftools.cxx
@@ -18,7 +18,6 @@
*/
#include <basegfx/numeric/ftools.hxx>
-#include <algorithm>
namespace basegfx
{
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx
index 18695ec2be19..9c8604e6ad32 100644
--- a/basegfx/source/polygon/b2dpolygon.cxx
+++ b/basegfx/source/polygon/b2dpolygon.cxx
@@ -25,7 +25,6 @@
#include <basegfx/curve/b2dcubicbezier.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <basegfx/utils/systemdependentdata.hxx>
-#include <algorithm>
#include <memory>
#include <vector>
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx
index bbdc54a15481..dcd6133abc4a 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -22,7 +22,6 @@
#include <basegfx/polygon/b2dpolygon.hxx>
#include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/utils/systemdependentdata.hxx>
-#include <algorithm>
class ImplB2DPolyPolygon
{
diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx
index 9be2f882c526..aac10925c234 100644
--- a/basegfx/source/polygon/b3dpolygon.cxx
+++ b/basegfx/source/polygon/b3dpolygon.cxx
@@ -24,7 +24,7 @@
#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/color/bcolor.hxx>
#include <basegfx/matrix/b2dhommatrix.hxx>
-#include <rtl/math.hxx>
+#include <cassert>
#include <vector>
#include <algorithm>
diff --git a/basegfx/source/polygon/b3dpolygontools.cxx b/basegfx/source/polygon/b3dpolygontools.cxx
index ac1f3a5a8d7e..19f885b2e826 100644
--- a/basegfx/source/polygon/b3dpolygontools.cxx
+++ b/basegfx/source/polygon/b3dpolygontools.cxx
@@ -25,7 +25,7 @@
#include <basegfx/range/b3drange.hxx>
#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/tuple/b3ituple.hxx>
-#include <rtl/math.hxx>
+#include <cassert>
#include <numeric>
namespace basegfx::utils
diff --git a/basegfx/source/polygon/b3dpolypolygontools.cxx b/basegfx/source/polygon/b3dpolypolygontools.cxx
index 74b145957731..3badd683d248 100644
--- a/basegfx/source/polygon/b3dpolypolygontools.cxx
+++ b/basegfx/source/polygon/b3dpolypolygontools.cxx
@@ -26,7 +26,6 @@
#include <basegfx/numeric/ftools.hxx>
#include <com/sun/star/drawing/DoubleSequence.hpp>
#include <com/sun/star/drawing/PolyPolygonShape3D.hpp>
-#include <sal/log.hxx>
// predefines
#define nMinSegments sal_uInt32(1)
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx
index 9cf24d53428c..5dc452728772 100644
--- a/basegfx/source/range/b2drangeclipper.cxx
+++ b/basegfx/source/range/b2drangeclipper.cxx
@@ -24,11 +24,11 @@
#include <basegfx/range/b2drangeclipper.hxx>
#include <basegfx/polygon/b2dpolypolygon.hxx>
#include <basegfx/range/b2drectangle.hxx>
-#include <rtl/math.hxx>
#include <o3tl/vector_pool.hxx>
#include <algorithm>
+#include <cassert>
#include <list>
#include <iterator>