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/object/color-profile.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/object/color-profile.cpp')
| -rw-r--r-- | src/object/color-profile.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/object/color-profile.cpp b/src/object/color-profile.cpp index 7bdde9b6d..c0ff72752 100644 --- a/src/object/color-profile.cpp +++ b/src/object/color-profile.cpp @@ -6,18 +6,18 @@ #include <gdkmm/rgba.h> -#include <glib/gstdio.h> #include <fcntl.h> #include <glib/gi18n.h> +#include <glib/gstdio.h> #ifdef DEBUG_LCMS #include <gtk/gtk.h> #endif // DEBUG_LCMS -#include <unistd.h> #include <cstring> -#include <io/sys.h> #include <io/resource.h> +#include <io/sys.h> +#include <unistd.h> #ifdef WIN32 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. Required for correctly including icm.h @@ -32,18 +32,18 @@ # include <lcms.h> #endif // HAVE_LIBLCMS2 -#include "xml/repr.h" -#include "color.h" -#include "color-profile.h" +#include "attributes.h" #include "cms-system.h" #include "color-profile-cms-fns.h" -#include "attributes.h" -#include "inkscape.h" +#include "color-profile.h" +#include "color.h" #include "document.h" +#include "inkscape.h" #include "preferences.h" +#include "uri.h" +#include "xml/repr.h" #include <glibmm/checksum.h> #include <glibmm/convert.h> -#include "uri.h" #ifdef WIN32 #include <icm.h> |
