mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Remove unused variable that clang missed.
This commit is contained in:
parent
bed88b1546
commit
6c85195b39
@ -518,8 +518,6 @@ bool PRS1Loader::PeekProperties(MachineInfo & info, const QString & filename, Ma
|
||||
return false;
|
||||
}
|
||||
QString modelnum;
|
||||
int ptype=0;
|
||||
bool ok;
|
||||
for (auto & key : props.keys()) {
|
||||
bool skip = false;
|
||||
|
||||
@ -532,7 +530,8 @@ bool PRS1Loader::PeekProperties(MachineInfo & info, const QString & filename, Ma
|
||||
skip = true;
|
||||
}
|
||||
if (key == "ProductType") {
|
||||
ptype = props[key].toInt(&ok, 16);
|
||||
bool ok;
|
||||
props[key].toInt(&ok, 16);
|
||||
if (!ok) qWarning() << "ProductType" << props[key];
|
||||
skip = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user