summaryrefslogtreecommitdiffstats
path: root/src/dir-util.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/dir-util.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/dir-util.cpp')
-rw-r--r--src/dir-util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dir-util.cpp b/src/dir-util.cpp
index 64f7ab7e7..c355a29f1 100644
--- a/src/dir-util.cpp
+++ b/src/dir-util.cpp
@@ -3,11 +3,11 @@
* Utility functions for filenames.
*/
-#include <errno.h>
-#include <string>
+#include "dir-util.h"
#include <cstring>
+#include <errno.h>
#include <glib.h>
-#include "dir-util.h"
+#include <string>
std::string sp_relative_path_from_path( std::string const &path, std::string const &base)
{