dolphin/Source/Core/Core/HLE
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
..
HLE.cpp Common/CommonFuncs: Remove now-unneccessary ArraySize function 2019-06-01 10:07:57 -04:00
HLE.h CachedInterpreter: Factor function hooking code out of Jit() 2018-05-16 18:55:49 -04:00
HLE_Misc.cpp Reformat repo to clang-format 7.0 rules 2019-05-06 18:48:04 +00:00
HLE_Misc.h Reformat repo to clang-format 7.0 rules 2019-05-06 18:48:04 +00:00
HLE_OS.cpp PowerPC: Move MMU-specifics from PowerPC.h to MMU.h 2018-05-17 19:18:55 -04:00
HLE_OS.h Reformat repo to clang-format 7.0 rules 2019-05-06 18:48:04 +00:00
HLE_VarArgs.cpp PowerPC: Factor out CR helpers into POD class 2019-03-08 20:42:09 +01:00
HLE_VarArgs.h PowerPC: Move MMU-specifics from PowerPC.h to MMU.h 2018-05-17 19:18:55 -04:00