mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
LibGfx/JPEG: Remove a silly initializer
SamplingFactors already has default initializers for its field, so no need to have an explicit one for the first of the two fields. No behavior change.
This commit is contained in:
parent
58b5181364
commit
5efe38ccd7
Notes:
sideshowbarker
2024-07-16 23:38:54 +09:00
Author: https://github.com/nico
Commit: 5efe38ccd7
Pull-request: https://github.com/SerenityOS/serenity/pull/22769
Reviewed-by: https://github.com/LucasChollet ✅
Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ struct JPEGLoadingContext {
|
|||
Array<Optional<Array<u16, 64>>, 4> quantization_tables {};
|
||||
|
||||
StartOfFrame frame;
|
||||
SamplingFactors sampling_factors { 0 };
|
||||
SamplingFactors sampling_factors {};
|
||||
|
||||
Optional<Scan> current_scan {};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue