Remove todo in accordance with review

This commit is contained in:
Lucca Jiménez Könings 2024-06-26 11:08:57 +02:00
parent 509225f151
commit 0d3256c429

View File

@ -241,7 +241,7 @@ void TConfig::TryReadValue(toml::value& Table, const std::string& Category, cons
void TConfig::ParseFromFile(std::string_view name) {
try {
toml::value data {};
if (!mDisableConfig) { // todo: rename mDisableCofig to configEnabled
if (!mDisableConfig) {
data = toml::parse<toml::preserve_comments>(name.data());
}