Browse Source

Fix a const variable

Closes #1112

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
ba8938ee20
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/modules/water/containers/OwnedArray.h

+ 1
- 1
source/modules/water/containers/OwnedArray.h View File

@@ -715,7 +715,7 @@ public:
@param newIndex the index at which you'd like this object to end up. If this
is less than zero, it will be moved to the end of the array
*/
void move (const size_t currentIndex, const size_t newIndex) noexcept
void move (const size_t currentIndex, size_t newIndex) noexcept
{
if (currentIndex != newIndex)
{


Loading…
Cancel
Save