1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:27:34 +00:00

LibGfx/TIFF: Take the TIFF value by rvalue reference in handle_tag()

This commit is contained in:
Lucas CHOLLET 2023-11-12 23:37:59 -05:00 committed by Sam Atkins
parent 4ab2903e25
commit 1afdf7f3c7
3 changed files with 4 additions and 4 deletions

View file

@ -56,7 +56,7 @@ enum class Predictor {
HorizontalDifferencing = 2,
};
ErrorOr<void> handle_tag(Metadata& metadata, u16 tag, Type type, u32 count, Vector<Value> const& value);
ErrorOr<void> handle_tag(Metadata& metadata, u16 tag, Type type, u32 count, Vector<Value>&& value);
}