[core] Support geo-navigation URL

Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
This commit is contained in:
x7z4w
2025-09-22 14:21:19 +00:00
committed by Yannik Bloscheck
parent c21afb27bd
commit 74122e2fae
9 changed files with 185 additions and 10 deletions

View File

@@ -49,6 +49,13 @@ bool FromString<string>(string const & strIn, string & strOut)
return true;
}
template <>
bool FromString<std::string_view>(string const & strIn, std::string_view & strOut)
{
strOut = strIn;
return true;
}
namespace impl
{
template <class T, size_t N>