summarylogtreecommitdiffstats
path: root/fix-missing-inline.patch
diff options
context:
space:
mode:
authorPatrick Northon2020-10-01 06:56:56 -0400
committerPatrick Northon2020-10-01 06:56:56 -0400
commitc27f75b12e84cab720926c4294618872d9ac76f0 (patch)
treef01438e33fe4cc899c2859dd445534e03f80a2af /fix-missing-inline.patch
parent004ae3ab92a08cef0eb761b87338b5ac2d0e20fe (diff)
downloadaur-c27f75b12e84cab720926c4294618872d9ac76f0.tar.gz
Update version.
Diffstat (limited to 'fix-missing-inline.patch')
-rw-r--r--fix-missing-inline.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/fix-missing-inline.patch b/fix-missing-inline.patch
deleted file mode 100644
index fc21d08febc1..000000000000
--- a/fix-missing-inline.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff --git a/libheif/heif_cxx.h b/libheif/heif_cxx.h
-index e05a730..c19199f 100644
---- a/libheif/heif_cxx.h
-+++ b/libheif/heif_cxx.h
-@@ -898,7 +898,7 @@ namespace heif {
- }
-
- // throws Error
-- ColorProfile_nclx Image::get_nclx_color_profile() const
-+ inline ColorProfile_nclx Image::get_nclx_color_profile() const
- {
- heif_color_profile_nclx* nclx = nullptr;
- Error err = Error(heif_image_get_nclx_color_profile(m_image.get(), &nclx));
-@@ -910,13 +910,13 @@ namespace heif {
- }
-
-
-- heif_color_profile_type Image::get_color_profile_type() const
-+ inline heif_color_profile_type Image::get_color_profile_type() const
- {
- return heif_image_get_color_profile_type(m_image.get());
- }
-
- // throws Error
-- std::vector<uint8_t> Image::get_raw_color_profile() const
-+ inline std::vector<uint8_t> Image::get_raw_color_profile() const
- {
- auto size = heif_image_get_raw_color_profile_size(m_image.get());
- std::vector<uint8_t> profile(size);
-@@ -924,7 +924,7 @@ namespace heif {
- return profile;
- }
-
-- void Image::set_raw_color_profile(heif_color_profile_type type,
-+ inline void Image::set_raw_color_profile(heif_color_profile_type type,
- const std::vector<uint8_t>& data)
- {
- const char* profile_type = nullptr;