Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2023-12-14 14:28:46 +01:00
parent 2e65d0351c
commit 2610547137
3 changed files with 11 additions and 11 deletions

View File

@@ -186,7 +186,7 @@
#ifndef _WIN32
template <typename T, size_t N>
size_t _countof(T (&arr)[N])
size_t _countof(const T (&arr)[N])
{
return std::extent<T[N]>::value;
}