summaryrefslogtreecommitdiffstats
path: root/src/message-stack.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/message-stack.cpp
parentFix test (diff)
downloadinkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz
inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to '')
-rw-r--r--src/message-stack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/message-stack.cpp b/src/message-stack.cpp
index 70b2fb42d..e70527e9a 100644
--- a/src/message-stack.cpp
+++ b/src/message-stack.cpp
@@ -9,10 +9,10 @@
* Released under GNU GPL, read the file 'COPYING' for more information
*/
-#include <string.h>
-#include <glib.h>
-#include <cstring>
#include "message-stack.h"
+#include <cstring>
+#include <glib.h>
+#include <string.h>
namespace Inkscape {