Lioncash a9663669dc Common/CommonFuncs: Remove now-unneccessary ArraySize function
Since C++17, non-member std::size() is present in the standard library
which also operates on regular C arrays. Given that, we can just replace
usages of ArraySize with that where applicable.

In many cases, we can just change the actual C array ArraySize() was
called on into a std::array and just use its .size() member function
instead.

In some other cases, we can collapse the loops they were used in, into a
ranged-for loop, eliminating the need for en explicit bounds query.
2019-06-01 10:07:57 -04:00
..
2018-04-12 21:28:39 +02:00
2019-03-11 22:17:13 +03:00
2017-05-26 00:53:58 -07:00
2016-01-17 20:11:45 -05:00
2017-03-26 23:08:33 -04:00
2018-04-12 21:28:39 +02:00
2017-06-15 21:34:04 +02:00
2015-05-25 13:22:31 +02:00
2018-04-12 21:28:39 +02:00
2019-04-01 11:24:55 +10:00
2016-01-17 20:11:45 -05:00