diff options
| author | Marc Jeanmougin <marc.jeanmougin@telecom-paristech.fr> | 2018-04-29 22:12:42 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc.jeanmougin@telecom-paristech.fr> | 2018-04-29 22:12:42 +0000 |
| commit | bba4ff6672494fab59286b50f6c645ad62a47e60 (patch) | |
| tree | c357b8add3334ef1df340d4eb433404857c27e7d /src/livarot/PathCutting.cpp | |
| parent | Fix test (diff) | |
| download | inkscape-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.cpp | 18 |
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" |
