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/dir-util.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/dir-util.cpp')
| -rw-r--r-- | src/dir-util.cpp | 6 |
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) { |
