summaryrefslogtreecommitdiffstats
path: root/src/livarot/PathCutting.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc.jeanmougin@telecom-paristech.fr>2018-04-29 22:12:42 +0000
committerMarc Jeanmougin <marc.jeanmougin@telecom-paristech.fr>2018-04-29 22:12:42 +0000
commitbba4ff6672494fab59286b50f6c645ad62a47e60 (patch)
treec357b8add3334ef1df340d4eb433404857c27e7d /src/livarot/PathCutting.cpp
parentFix test (diff)
downloadinkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz
inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to 'src/livarot/PathCutting.cpp')
-rw-r--r--src/livarot/PathCutting.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/livarot/PathCutting.cpp b/src/livarot/PathCutting.cpp
index 086b30557..a4a283c73 100644
--- a/src/livarot/PathCutting.cpp
+++ b/src/livarot/PathCutting.cpp
@@ -13,20 +13,20 @@
* Released under GNU GPL, read the file 'COPYING' for more information
*/
-#include <cstring>
-#include <string>
-#include <cstdio>
-#include <typeinfo>
#include "Path.h"
-#include "style.h"
+#include "helper/geom-curves.h"
+#include "helper/geom.h"
#include "livarot/path-description.h"
+#include "style.h"
+#include <2geom/affine.h>
+#include <2geom/curves.h>
#include <2geom/pathvector.h>
#include <2geom/point.h>
-#include <2geom/affine.h>
#include <2geom/sbasis-to-bezier.h>
-#include <2geom/curves.h>
-#include "helper/geom-curves.h"
-#include "helper/geom.h"
+#include <cstdio>
+#include <cstring>
+#include <string>
+#include <typeinfo>
#include "svg/svg.h"