mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:48:12 +00:00
IPCCompiler: Default initialize all parameter member variables
PVS Studio static analysis noticed we didn't initialize these in a bunch of cases. This change fixes that so we will always initialize these using universal initialization.
This commit is contained in:
parent
4490668af2
commit
39e5b42f36
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ private:
|
|||
parameter_generator.set("parameter.type", parameter.type);
|
||||
parameter_generator.set("parameter.name", parameter.name);
|
||||
parameter_generator.append(R"~~~(
|
||||
@parameter.type@ m_@parameter.name@;
|
||||
@parameter.type@ m_@parameter.name@ {};
|
||||
)~~~");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue