forked from organicmaps/organicmaps
Add DebugPrint for array.
This commit is contained in:
parent
eedfce0f83
commit
3af0e02f4c
1 changed files with 5 additions and 0 deletions
|
@ -72,6 +72,11 @@ namespace my
|
|||
}
|
||||
}
|
||||
|
||||
template <typename T, size_t N> inline string DebugPrint(T (&arr) [N])
|
||||
{
|
||||
return ::my::impl::DebugPrintSequence(arr, arr + N);
|
||||
}
|
||||
|
||||
template <typename T> inline string DebugPrint(vector<T> const & v)
|
||||
{
|
||||
return ::my::impl::DebugPrintSequence(v.begin(), v.end());
|
||||
|
|
Loading…
Add table
Reference in a new issue