diff --git a/src/config.cpp b/src/config.cpp index 8a60860..8fffef2 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -44,7 +44,7 @@ std::vector get_data_syms_paths(const toml::array* data_s ret.reserve(data_syms_paths_array->size()); data_syms_paths_array->for_each([&ret, &basedir](auto&& el) { if constexpr (toml::is_string) { - ret.emplace_back(concat_if_not_empty(basedir, el.value_exact().value())); + ret.emplace_back(concat_if_not_empty(basedir, el.template value_exact().value())); } else { throw toml::parse_error("Invalid type for data reference symbol file entry", el.source());