mirror of https://github.com/PCSX2/pcsx2.git
INI: Fix C5051 warning.
Comment out the attribute, can be used in the future. C++20 requirement.
This commit is contained in:
parent
bc7ffe4720
commit
9d968e7906
|
@ -310,7 +310,7 @@ std::vector<std::pair<std::string, std::string>> INISettingsInterface::GetKeyVal
|
|||
{
|
||||
for (Entry& key : keys)
|
||||
{
|
||||
if (!m_ini.GetAllValues(section, key.pItem, values)) [[unlikely]]
|
||||
if (!m_ini.GetAllValues(section, key.pItem, values)) // [[unlikely]]
|
||||
{
|
||||
Console.Error("Got no values for a key returned from GetAllKeys!");
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue