logic: Fixed non-indexed symbols were not shown as namespace contents

This commit is contained in:
Eberhard Graether
2017-02-10 00:54:04 +01:00
parent bfb997d35f
commit ab7fdac2f8
+4
View File
@@ -831,6 +831,10 @@ std::shared_ptr<Graph> PersistentStorage::getGraphForActiveTokenIds(const std::v
nodeIds.push_back(symbol.id);
}
}
for (const StorageNode& node : m_sqliteStorage.getAllByIds<StorageNode>(ids))
{
nodeIds.push_back(node.id);
}
for (const StorageFile& file : m_sqliteStorage.getAllByIds<StorageFile>(ids))
{
nodeIds.push_back(file.id);