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/svg/svg-path.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/svg/svg-path.cpp')
| -rw-r--r-- | src/svg/svg-path.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svg/svg-path.cpp b/src/svg/svg-path.cpp index 13795f2a3..dee79075a 100644 --- a/src/svg/svg-path.cpp +++ b/src/svg/svg-path.cpp @@ -16,17 +16,17 @@ */ #include <cstring> -#include <string> #include <glib.h> // g_assert() +#include <string> -#include <2geom/pathvector.h> #include <2geom/curves.h> -#include <2geom/sbasis-to-bezier.h> #include <2geom/path-sink.h> +#include <2geom/pathvector.h> +#include <2geom/sbasis-to-bezier.h> #include <2geom/svg-path-parser.h> -#include "svg/svg.h" #include "svg/path-string.h" +#include "svg/svg.h" /* * Parses the path in str. When an error is found in the pathstring, this method |
