mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 09:59:59 +03:00
NOISSUE fix unitialized data warning on Arch Linux
This commit is contained in:
parent
a222c94d34
commit
8108c61745
3 changed files with 88 additions and 83 deletions
|
|
@ -59,7 +59,7 @@ QString GetMinecraftJarVersion(QString jarName)
|
|||
iter != constants.end(); iter++)
|
||||
{
|
||||
const java::constant &constant = *iter;
|
||||
if (constant.type != java::constant::j_string_data)
|
||||
if (constant.type != java::constant_type_t::j_string_data)
|
||||
continue;
|
||||
const std::string &str = constant.str_data;
|
||||
qDebug() << QString::fromStdString(str);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue