fix up the regexes in Config.cpp

This commit is contained in:
Arisotura 2024-06-15 19:10:28 +02:00
parent ccc5c955e9
commit d449888405
1 changed files with 3 additions and 3 deletions

View File

@ -484,7 +484,7 @@ int Table::GetInt(const std::string& path)
int ret = (int)tval.as_integer();
std::regex rng_re("\\d+");
std::regex rng_re("(\\d+)");
std::string rngkey = std::regex_replace(PathPrefix+path, rng_re, "*");
if (IntRanges.count(rngkey) != 0)
{
@ -524,7 +524,7 @@ std::string Table::GetString(const std::string& path)
void Table::SetInt(const std::string& path, int val)
{
std::regex rng_re("\\d+");
std::regex rng_re("(\\d+)");
std::string rngkey = std::regex_replace(PathPrefix+path, rng_re, "*");
if (IntRanges.count(rngkey) != 0)
{
@ -571,7 +571,7 @@ toml::value& Table::ResolvePath(const std::string& path)
template<typename T> T Table::FindDefault(const std::string& path, T def, DefaultList<T> list)
{
std::regex def_re("\\d+");
std::regex def_re("(\\d+)");
std::string defkey = std::regex_replace(PathPrefix+path, def_re, "*");
T ret = def;