C++: Fix uninitialized value warnings

...from coverity scan.

Change-Id: I44663354b3ee4854dd6335121a0160e35f14976c
Reviewed-by: Robert Loehning <robert.loehning@qt.io>
This commit is contained in:
Nikolai Kosjar
2017-06-01 13:34:17 +02:00
parent 3e203e1208
commit 461ffae871

View File

@@ -192,7 +192,7 @@ private:
const LookupContext &_context;
// binding has to be remembered in case of resolving typedefs for templates
ClassOrNamespace *_binding;
ClassOrNamespace *_binding = nullptr;
};
static int evaluateFunctionArgument(const FullySpecifiedType &actualTy,