dolphin/Source/Core/Core/Boot
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
..
Boot_BS2Emu.cpp BS2Emu: Don't do a DVDCopy when AppLdrMain returns 0 2018-08-02 01:30:25 -04:00
Boot_WiiWAD.cpp Set 0x0000002C to NDEV 2.1 when running a debug-signed Wii disc 2018-06-07 10:14:32 +02:00
Boot.cpp Common/CommonFuncs: Remove now-unneccessary ArraySize function 2019-06-01 10:07:57 -04:00
Boot.h Automatic disc change for 2-disc games 2019-01-04 09:24:38 +01:00
DolReader.cpp DolReader/ElfReader: Remove unnecessary FileUtil.h includes 2018-05-12 17:41:17 -04:00
DolReader.h Boot: Make BootExecutableReader's constructor take a std::vector by value 2018-05-12 17:40:34 -04:00
ElfReader.cpp SymbolDB: Namespace code under the Common namespace 2018-05-27 18:01:40 -04:00
ElfReader.h Boot: Make BootExecutableReader's constructor take a std::vector by value 2018-05-12 17:40:34 -04:00
ElfTypes.h specify custom brace style to fix unions 2017-01-05 12:55:13 +01:00