From d30d85bdfb711d05443c5d3e9a52cdd766ba1e49 Mon Sep 17 00:00:00 2001 From: Mr-Wiseguy Date: Fri, 28 Jun 2024 21:34:53 -0400 Subject: [PATCH] Fix compilation error on some compilers --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());