well I need to discard it?

I am not going to use that variable, you picky MSVC
This commit is contained in:
tildearrow 2022-12-22 15:40:10 -05:00
parent eab679e9d3
commit e74d7f1922
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ String DivConfig::getString(String key, String fallback) const {
bool DivConfig::has(String key) {
try {
conf.at(key);
String test=conf.at(key);
} catch (std::out_of_range& e) {
return false;
}