From 0949bea61c2559ee0209f4388d81e4e68060f728 Mon Sep 17 00:00:00 2001 From: deegan Date: Tue, 3 Sep 2024 11:18:25 +0200 Subject: [PATCH] werror - use param --- include/dict.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dict.hpp b/include/dict.hpp index f098209..810f58f 100644 --- a/include/dict.hpp +++ b/include/dict.hpp @@ -405,7 +405,7 @@ template T get_value(Dict const& dict, std::string const& path, T const default_value, char delimiter = '/') { - return get_value(dict, detail::split_string(path), default_value); + return get_value(dict, detail::split_string(path, delimiter), default_value); }