Skip to content

Commit

Permalink
werror - use param
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan authored and jeandet committed Sep 3, 2024
1 parent 9a4dd20 commit 0949bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dict.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ template<typename T, typename... Types>
T get_value(Dict<Types...> 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);
}


Expand Down

0 comments on commit 0949bea

Please sign in to comment.