From 9d968e790671f41cb6659222cec4a4645aaf15ce Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Fri, 23 Dec 2022 02:39:01 +0100 Subject: [PATCH] INI: Fix C5051 warning. Comment out the attribute, can be used in the future. C++20 requirement. --- pcsx2/INISettingsInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/INISettingsInterface.cpp b/pcsx2/INISettingsInterface.cpp index f17e039a5e..f65429aa28 100644 --- a/pcsx2/INISettingsInterface.cpp +++ b/pcsx2/INISettingsInterface.cpp @@ -310,7 +310,7 @@ std::vector> 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;