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:
@@ -123,9 +123,9 @@ private:
|
||||
QString m_symbolScope;
|
||||
QString m_fileName;
|
||||
QIcon m_icon;
|
||||
ItemType m_type;
|
||||
int m_line;
|
||||
int m_column;
|
||||
ItemType m_type = All;
|
||||
int m_line = 0;
|
||||
int m_column = 0;
|
||||
QVector<IndexItem::Ptr> m_children;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user