mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
LibGfx: Hotfix a -Wmaybe-uninitialized failure on the build bots
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user