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/object/sp-gradient.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/object/sp-gradient.cpp')
| -rw-r--r-- | src/object/sp-gradient.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/object/sp-gradient.cpp b/src/object/sp-gradient.cpp index feaa04e0f..477fd8a14 100644 --- a/src/object/sp-gradient.cpp +++ b/src/object/sp-gradient.cpp @@ -33,23 +33,23 @@ #include <cairo.h> -#include <sigc++/functors/ptr_fun.h> #include <sigc++/adaptors/bind.h> +#include <sigc++/functors/ptr_fun.h> +#include "attributes.h" #include "bad-uri-exception.h" #include "display/cairo-utils.h" -#include "svg/svg.h" -#include "svg/css-ostringstream.h" -#include "attributes.h" #include "document-private.h" #include "gradient-chemistry.h" #include "sp-gradient-reference.h" #include "sp-linear-gradient.h" -#include "sp-radial-gradient.h" #include "sp-mesh-gradient.h" -#include "sp-mesh-row.h" #include "sp-mesh-patch.h" +#include "sp-mesh-row.h" +#include "sp-radial-gradient.h" #include "sp-stop.h" +#include "svg/css-ostringstream.h" +#include "svg/svg.h" /// Has to be power of 2 Seems to be unused. //#define NCOLORS NR_GRADIENT_VECTOR_LENGTH |
