summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-03-06 14:08:01 -0500
committerLioncash <mathew1800@gmail.com>2017-03-06 14:08:07 -0500
commit248a04f68f8ec66141fca8cdc0d7a786dcc4ef0a (patch)
tree1539d3046000766092e122f1e7233a9e637fc41f /Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
parent7d681f9c931b63f3ecec36c1ef515dc747df7ac4 (diff)
Memmap: Remove unnecessary const on function declaration parameters
const, when used on value type parameters in the declaration, is superfluous. This doesn't really convey any information to take note of when using the function. This only matters in the definition when you want to prevent accidental modification. e.g. // Header void CalculateSomething(int lhs, int rhs); // Definition void CalculateSomething(const int lhs, const int rhs) { // lhs and rhs can't accidentally be modified }
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/ObjectCache.cpp')
0 files changed, 0 insertions, 0 deletions