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/live_effects/lpe-offset.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/live_effects/lpe-offset.cpp')
| -rw-r--r-- | src/live_effects/lpe-offset.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/live_effects/lpe-offset.cpp b/src/live_effects/lpe-offset.cpp index 257d02c83..070c333ea 100644 --- a/src/live_effects/lpe-offset.cpp +++ b/src/live_effects/lpe-offset.cpp @@ -14,22 +14,22 @@ */ #include "live_effects/parameter/enum.h" -#include "live_effects/lpe-offset.h" #include "display/curve.h" -#include "inkscape.h" -#include "helper/geom.h" #include "helper/geom-pathstroke.h" -#include <2geom/sbasis-to-bezier.h> -#include <2geom/piecewise.h> -#include <2geom/path-intersection.h> -#include <2geom/intersection-graph.h> -#include <2geom/elliptical-arc.h> -#include <2geom/angle.h> -#include <2geom/curve.h> -#include "object/sp-shape.h" +#include "helper/geom.h" +#include "inkscape.h" #include "knot-holder-entity.h" -#include "knotholder.h" #include "knot.h" +#include "knotholder.h" +#include "live_effects/lpe-offset.h" +#include "object/sp-shape.h" +#include <2geom/angle.h> +#include <2geom/curve.h> +#include <2geom/elliptical-arc.h> +#include <2geom/intersection-graph.h> +#include <2geom/path-intersection.h> +#include <2geom/piecewise.h> +#include <2geom/sbasis-to-bezier.h> #include <algorithm> //this is only to flatten nonzero fillrule #include "livarot/Path.h" |
