forked from qt-creator/qt-creator
CppTools: Fix uninitialized values warnings
...from coverity scan. Change-Id: I7f4c3de39279cfffab2246aa84ae2ac13916bd1e Reviewed-by: Robert Loehning <robert.loehning@qt.io>
This commit is contained in:
@@ -354,7 +354,7 @@ public:
|
||||
class FindMethodDefinitionInsertPoint : protected ASTVisitor
|
||||
{
|
||||
QList<const Identifier *> _namespaceNames;
|
||||
int _currentDepth;
|
||||
int _currentDepth = 0;
|
||||
HighestValue<int, unsigned> _bestToken;
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user