mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
LibGfx: Hotfix a -Wmaybe-uninitialized failure on the build bots
This commit is contained in:
parent
7696e96c7f
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