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;
|
return false;
|
||||||
}
|
}
|
||||||
QString modelnum;
|
QString modelnum;
|
||||||
int ptype=0;
|
|
||||||
bool ok;
|
|
||||||
for (auto & key : props.keys()) {
|
for (auto & key : props.keys()) {
|
||||||
bool skip = false;
|
bool skip = false;
|
||||||
|
|
||||||
@ -532,7 +530,8 @@ bool PRS1Loader::PeekProperties(MachineInfo & info, const QString & filename, Ma
|
|||||||
skip = true;
|
skip = true;
|
||||||
}
|
}
|
||||||
if (key == "ProductType") {
|
if (key == "ProductType") {
|
||||||
ptype = props[key].toInt(&ok, 16);
|
bool ok;
|
||||||
|
props[key].toInt(&ok, 16);
|
||||||
if (!ok) qWarning() << "ProductType" << props[key];
|
if (!ok) qWarning() << "ProductType" << props[key];
|
||||||
skip = true;
|
skip = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user