summaryrefslogtreecommitdiffstats
path: root/src/trace
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/trace
parentFix test (diff)
downloadinkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz
inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to 'src/trace')
-rw-r--r--src/trace/potrace/inkscape-potrace.cpp6
-rw-r--r--src/trace/quantize.cpp4
-rw-r--r--src/trace/siox.cpp6
-rw-r--r--src/trace/trace.cpp18
4 files changed, 17 insertions, 17 deletions
diff --git a/src/trace/potrace/inkscape-potrace.cpp b/src/trace/potrace/inkscape-potrace.cpp
index b438be248..f9c416961 100644
--- a/src/trace/potrace/inkscape-potrace.cpp
+++ b/src/trace/potrace/inkscape-potrace.cpp
@@ -21,17 +21,17 @@
#include <iomanip>
#include "trace/filterset.h"
-#include "trace/quantize.h"
#include "trace/imagemap-gdk.h"
+#include "trace/quantize.h"
-#include <inkscape.h>
#include "desktop.h"
#include "message-stack.h"
+#include <inkscape.h>
#include "object/sp-path.h"
-#include <svg/path-string.h>
#include "bitmap.h"
+#include <svg/path-string.h>
using Glib::ustring;
diff --git a/src/trace/quantize.cpp b/src/trace/quantize.cpp
index c386c0ee9..7a085b083 100644
--- a/src/trace/quantize.cpp
+++ b/src/trace/quantize.cpp
@@ -11,11 +11,11 @@
#include <cassert>
#include <cstdio>
-#include <stdlib.h>
#include <new>
+#include <stdlib.h>
-#include "pool.h"
#include "imagemap.h"
+#include "pool.h"
#include "quantize.h"
typedef struct Ocnode_def Ocnode;
diff --git a/src/trace/siox.cpp b/src/trace/siox.cpp
index 9df4e561c..8bd04c0b9 100644
--- a/src/trace/siox.cpp
+++ b/src/trace/siox.cpp
@@ -7,11 +7,11 @@
*/
#include "siox.h"
-#include <math.h>
-#include <stdarg.h>
-#include <map>
#include <algorithm>
#include <cstdlib>
+#include <map>
+#include <math.h>
+#include <stdarg.h>
namespace org
diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp
index 5595b2544..94e24dfc2 100644
--- a/src/trace/trace.cpp
+++ b/src/trace/trace.cpp
@@ -14,30 +14,30 @@
#include "trace/potrace/inkscape-potrace.h"
-#include "inkscape.h"
#include "desktop.h"
+#include "inkscape.h"
-#include "document.h"
#include "document-undo.h"
+#include "document.h"
#include "message-stack.h"
-#include <glibmm/i18n.h>
-#include <gtkmm/main.h>
#include "selection.h"
-#include "xml/repr.h"
+#include "verbs.h"
#include "xml/attribute-record.h"
+#include "xml/repr.h"
#include <2geom/transforms.h>
-#include "verbs.h"
+#include <glibmm/i18n.h>
+#include <gtkmm/main.h>
#include "display/cairo-utils.h"
-#include "display/drawing.h"
#include "display/drawing-shape.h"
+#include "display/drawing.h"
+#include "object/sp-image.h"
#include "object/sp-item.h"
#include "object/sp-shape.h"
-#include "object/sp-image.h"
-#include "siox.h"
#include "imagemap-gdk.h"
+#include "siox.h"
namespace Inkscape {
namespace Trace {