Lint fixes.

This commit is contained in:
Ben Vanik
2015-10-17 09:30:28 -07:00
parent 91dfb6a8a0
commit 64b8dcfd99
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@
namespace xe {
template <typename T, size_t N>
size_t countof(T(&arr)[N]) {
size_t countof(T (&arr)[N]) {
return std::extent<T[N]>::value;
}