mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-16 08:57:15 +00:00
NOISSUE fix unitialized data warning on Arch Linux
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user