mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-27 18:39:44 +00:00
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. |
||
|---|---|---|
| .. | ||
| Crypto | ||
| BitFieldTest.cpp | ||
| BitSetTest.cpp | ||
| BitUtilsTest.cpp | ||
| BlockingLoopTest.cpp | ||
| BusyLoopTest.cpp | ||
| CMakeLists.txt | ||
| CommonFuncsTest.cpp | ||
| EventTest.cpp | ||
| FixedSizeQueueTest.cpp | ||
| FlagTest.cpp | ||
| FloatUtilsTest.cpp | ||
| MathUtilTest.cpp | ||
| NandPathsTest.cpp | ||
| SPSCQueueTest.cpp | ||
| StringUtilTest.cpp | ||
| SwapTest.cpp | ||
| x64EmitterTest.cpp | ||