mirror of https://github.com/PCSX2/pcsx2.git
SettingsInterface: Fix constness of a few methods
This commit is contained in:
parent
38cf7884fe
commit
be3ed181c1
|
@ -92,31 +92,31 @@ public:
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
__fi std::optional<int> GetOptionalIntValue(const char* section, const char* key, std::optional<int> default_value = std::nullopt)
|
__fi std::optional<int> GetOptionalIntValue(const char* section, const char* key, std::optional<int> default_value = std::nullopt) const
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
return GetIntValue(section, key, &ret) ? std::optional<int>(ret) : default_value;
|
return GetIntValue(section, key, &ret) ? std::optional<int>(ret) : default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
__fi std::optional<uint> GetOptionalUIntValue(const char* section, const char* key, std::optional<uint> default_value = std::nullopt)
|
__fi std::optional<uint> GetOptionalUIntValue(const char* section, const char* key, std::optional<uint> default_value = std::nullopt) const
|
||||||
{
|
{
|
||||||
uint ret;
|
uint ret;
|
||||||
return GetUIntValue(section, key, &ret) ? std::optional<uint>(ret) : default_value;
|
return GetUIntValue(section, key, &ret) ? std::optional<uint>(ret) : default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
__fi std::optional<float> GetOptionalFloatValue(const char* section, const char* key, std::optional<float> default_value = std::nullopt)
|
__fi std::optional<float> GetOptionalFloatValue(const char* section, const char* key, std::optional<float> default_value = std::nullopt) const
|
||||||
{
|
{
|
||||||
float ret;
|
float ret;
|
||||||
return GetFloatValue(section, key, &ret) ? std::optional<float>(ret) : default_value;
|
return GetFloatValue(section, key, &ret) ? std::optional<float>(ret) : default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
__fi std::optional<double> GetOptionalDoubleValue(const char* section, const char* key, std::optional<double> default_value = std::nullopt)
|
__fi std::optional<double> GetOptionalDoubleValue(const char* section, const char* key, std::optional<double> default_value = std::nullopt) const
|
||||||
{
|
{
|
||||||
double ret;
|
double ret;
|
||||||
return GetDoubleValue(section, key, &ret) ? std::optional<double>(ret) : default_value;
|
return GetDoubleValue(section, key, &ret) ? std::optional<double>(ret) : default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
__fi std::optional<bool> GetOptionalBoolValue(const char* section, const char* key, std::optional<bool> default_value = std::nullopt)
|
__fi std::optional<bool> GetOptionalBoolValue(const char* section, const char* key, std::optional<bool> default_value = std::nullopt) const
|
||||||
{
|
{
|
||||||
bool ret;
|
bool ret;
|
||||||
return GetBoolValue(section, key, &ret) ? std::optional<bool>(ret) : default_value;
|
return GetBoolValue(section, key, &ret) ? std::optional<bool>(ret) : default_value;
|
||||||
|
|
Loading…
Reference in New Issue