diff options
author | Nico Weber <thakis@chromium.org> | 2023-01-27 14:58:02 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-28 00:27:07 +0000 |
commit | b5deccf859b9305748e6ff7809c1fd92d2533419 (patch) | |
tree | 8e076d00e8cf5e7de6d3dfa3ac3e967d95b27e47 /Userland/Utilities | |
parent | 6d51d8ad327274e0527af3b860137bb9eba01b75 (diff) | |
download | serenity-b5deccf859b9305748e6ff7809c1fd92d2533419.zip |
LibGfx: Split ICC/Profile.{h,cpp} into several files
s15Fixed16Number and XYZNumber are somewhat awkwardly duplicated
in both Profile.cpp and TagTypes.cpp. Other than that, this is a
pure code move.
No behavior change.
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/icc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/icc.cpp b/Userland/Utilities/icc.cpp index 35ca614f39..884db15c9e 100644 --- a/Userland/Utilities/icc.cpp +++ b/Userland/Utilities/icc.cpp @@ -10,6 +10,7 @@ #include <LibCore/DateTime.h> #include <LibCore/MappedFile.h> #include <LibGfx/ICC/Profile.h> +#include <LibGfx/ICC/Tags.h> #include <LibGfx/ImageDecoder.h> template<class T> |