Fix mismatched tag class vs struct

See friend declaration below. That's the reason why we decided to use
'class' almost everywhere.

Change-Id: Icd8ba99528eac28721b403cac0a992ee4d367265
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Eike Ziller
2018-03-06 10:02:57 +01:00
parent c660235019
commit 6990995868

View File

@@ -32,8 +32,9 @@
namespace CppTools {
struct SymbolItem : public Utils::TreeItem
class SymbolItem : public Utils::TreeItem
{
public:
SymbolItem() = default;
SymbolItem(CPlusPlus::Symbol *symbol) : symbol(symbol) {}