summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-06-01 07:55:09 -0400
committerLioncash <mathew1800@gmail.com>2019-06-01 10:07:57 -0400
commita9663669dc1037a04e37ae30efe18c0650547ac5 (patch)
treeb0bafacb909c3360951bb6b2781a94b97a9284be /Source/Core/VideoCommon/RenderBase.cpp
parenta4837a5c5dc5d71f4b93dcb2fd5b80c5cfab381a (diff)
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.
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
0 files changed, 0 insertions, 0 deletions