forked from qt-creator/qt-creator
Fix build with Qt 6
Change-Id: I5c775460563dde17a363ea875d7f993e4e4d6ecd Reviewed-by: Leander Schulten <Leander.Schulten@rwth-aachen.de> Reviewed-by: Marco Bubke <marco.bubke@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -3168,7 +3168,7 @@ void GdbEngine::handleRegisterListing(const DebuggerResponse &response)
|
||||
reg.name = parts.at(0);
|
||||
reg.size = parts.at(4).toInt();
|
||||
reg.reportedType = parts.at(5);
|
||||
reg.groups = parts.at(6).split(',').toSet();
|
||||
reg.groups = Utils::toSet(parts.at(6).split(','));
|
||||
m_registers[gdbRegisterNumber] = reg;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user