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:
parent
4ab2903e25
commit
1afdf7f3c7
3 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue