summaryrefslogtreecommitdiffstats
path: root/src/object/sp-object.cpp
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/object/sp-object.cpp
parentFix test (diff)
downloadinkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz
inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to 'src/object/sp-object.cpp')
-rw-r--r--src/object/sp-object.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/object/sp-object.cpp b/src/object/sp-object.cpp
index 112a08fb9..828c842d3 100644
--- a/src/object/sp-object.cpp
+++ b/src/object/sp-object.cpp
@@ -20,28 +20,28 @@
#include <boost/range/adaptor/transformed.hpp>
-#include "helper/sp-marshal.h"
-#include "xml/node-event-vector.h"
-#include "attributes.h"
#include "attribute-rel-util.h"
+#include "attributes.h"
#include "color-profile.h"
+#include "debug/demangle.h"
+#include "debug/event-tracker.h"
+#include "debug/simple-event.h"
#include "document.h"
-#include "preferences.h"
-#include "style.h"
+#include "helper/sp-marshal.h"
#include "live_effects/lpeobject.h"
+#include "preferences.h"
#include "sp-factory.h"
#include "sp-paint-server.h"
#include "sp-root.h"
-#include "sp-style-elem.h"
#include "sp-script.h"
+#include "sp-style-elem.h"
#include "streq.h"
#include "strneq.h"
-#include "xml/node-fns.h"
-#include "debug/event-tracker.h"
-#include "debug/simple-event.h"
-#include "debug/demangle.h"
+#include "style.h"
#include "util/format.h"
#include "util/longest-common-suffix.h"
+#include "xml/node-event-vector.h"
+#include "xml/node-fns.h"
using std::memcpy;
using std::strchr;