forked from organicmaps/organicmaps
[base] gcc build fix
This commit is contained in:
parent
9f0483c730
commit
694963b83d
1 changed files with 4 additions and 2 deletions
|
@ -429,6 +429,9 @@ std::string to_string(T t)
|
|||
return ss.str();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
struct ToString { std::string operator()(T const & v) { return to_string(v); } };
|
||||
|
||||
WARN_UNUSED_RESULT inline bool to_any(std::string const & s, int & i) { return to_int(s, i); }
|
||||
WARN_UNUSED_RESULT inline bool to_any(std::string const & s, unsigned int & i)
|
||||
{
|
||||
|
@ -591,8 +594,7 @@ std::string JoinAny(Container const & container,
|
|||
Delimiter const & delimiter = ',',
|
||||
std::function<
|
||||
std::string (typename Container::value_type const & v)> const & converter =
|
||||
[](typename Container::value_type const & item)
|
||||
{ return to_string(item); })
|
||||
ToString<typename Container::value_type>())
|
||||
{
|
||||
return JoinAny(std::cbegin(container), std::cend(container), delimiter, converter);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue