From 0d3256c429282b2da973ca15ab1b0f62a23a6af4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucca=20Jim=C3=A9nez=20K=C3=B6nings?= Date: Wed, 26 Jun 2024 11:08:57 +0200 Subject: [PATCH] Remove todo in accordance with review --- src/TConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TConfig.cpp b/src/TConfig.cpp index a41cf18..66bcd2b 100644 --- a/src/TConfig.cpp +++ b/src/TConfig.cpp @@ -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(name.data()); }