Kaynağa Gözat

LibGfx/ICC: Move some Profile member vars up a bit

...so that they're not below a FIXME that doesn't apply to them.

No behavior change.
Nico Weber 1 yıl önce
ebeveyn
işleme
5c5a24c6b7
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 3 3
      Userland/Libraries/LibGfx/ICC/Profile.h

+ 3 - 3
Userland/Libraries/LibGfx/ICC/Profile.h

@@ -241,12 +241,12 @@ private:
     ErrorOr<void> check_required_tags();
     ErrorOr<void> check_required_tags();
     ErrorOr<void> check_tag_types();
     ErrorOr<void> check_tag_types();
 
 
+    ProfileHeader m_header;
+    OrderedHashMap<TagSignature, NonnullRefPtr<TagData>> m_tag_table;
+
     // FIXME: The color conversion stuff should be in some other class.
     // FIXME: The color conversion stuff should be in some other class.
     ErrorOr<FloatVector3> to_pcs_a_to_b(TagData const& tag_data, ReadonlyBytes) const;
     ErrorOr<FloatVector3> to_pcs_a_to_b(TagData const& tag_data, ReadonlyBytes) const;
     ErrorOr<void> from_pcs_b_to_a(TagData const& tag_data, FloatVector3 const&, Bytes) const;
     ErrorOr<void> from_pcs_b_to_a(TagData const& tag_data, FloatVector3 const&, Bytes) const;
-
-    ProfileHeader m_header;
-    OrderedHashMap<TagSignature, NonnullRefPtr<TagData>> m_tag_table;
 };
 };
 
 
 }
 }