1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

Everywhere: Add braces to aggregate initializers

This fixes a couple of warnings emitted by Clang.
This commit is contained in:
Daniel Bertalan 2021-07-05 19:23:19 +02:00 committed by Gunnar Beutner
parent 98260c5862
commit 2db4709c0c
3 changed files with 4 additions and 4 deletions

View file

@ -383,7 +383,7 @@ Vector<DebugInfo::SourcePosition> DebugInfo::source_lines_in_scope(VariablesScop
DebugInfo::SourcePosition DebugInfo::SourcePosition::from_line_info(Dwarf::LineProgram::LineInfo const& line)
{
return { line.file, line.line, { line.address } };
return { line.file, line.line, line.address };
}
DebugInfo::SourcePositionWithInlines DebugInfo::get_source_position_with_inlines(u32 address) const