mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 17:19:10 +01:00
248a04f68f
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 }