mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibGfx: Hotfix a -Wmaybe-uninitialized failure on the build bots
This commit is contained in:
parent
7696e96c7f
commit
d5a27d77d7
Notes:
sideshowbarker
2024-07-18 08:01:16 +09:00
Author: https://github.com/awesomekling
Commit: d5a27d77d7
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ Vector<String, 32> TextLayout::wrap_lines(TextElision elision, TextWrapping wrap
|
|||
Vector<Block> blocks;
|
||||
|
||||
Optional<BlockType> current_block_type;
|
||||
size_t block_start_offset;
|
||||
size_t block_start_offset = 0;
|
||||
|
||||
size_t offset = 0;
|
||||
for (auto it = m_text.begin(); !it.done(); ++it) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue