dolphin/Source/Core
Lioncash 248a04f68f 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
}
2017-03-06 14:08:07 -05:00
..
AudioCommon Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
Common Merge pull request #5007 from lioncash/swap 2017-03-05 09:45:29 -05:00
Core Memmap: Remove unnecessary const on function declaration parameters 2017-03-06 14:08:07 -05:00
DiscIO Merge pull request #5007 from lioncash/swap 2017-03-05 09:45:29 -05:00
DolphinQt2 CMakeLists: Normalize whitespace 2017-03-01 14:53:23 -05:00
DolphinWX Merge pull request #5007 from lioncash/swap 2017-03-05 09:45:29 -05:00
InputCommon BooleanSetting: Initialize m_value to default_value in the constructor 2017-03-03 14:09:48 -05:00
UICommon UICommon: Make GetNewDisassembler() return a unique_ptr 2017-03-02 21:26:17 -05:00
VideoBackends Merge pull request #5007 from lioncash/swap 2017-03-05 09:45:29 -05:00
VideoCommon Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
CMakeLists.txt CMakeLists: Normalize whitespace 2017-03-01 14:53:23 -05:00