Merge pull request #18291 from akien-mga/coverity-uninitialized-scalar-var

Fix Coverity reports of uninitialized scalar variable
This commit is contained in:
Rémi Verschelde
2018-05-01 19:14:07 +02:00
committed by GitHub
21 changed files with 48 additions and 66 deletions

View File

@ -425,6 +425,7 @@ public:
FunctionNode() {
type = TYPE_FUNCTION;
return_type = TYPE_VOID;
return_precision = PRECISION_DEFAULT;
can_discard = false;
}