These moves are either:
- copies because the variable being moved is const
- references because the function parameter the var is moved to is a reference
Either fix by removing the constness or removing the move.
For the places where the move is removed, there is no performance impact as it was not working anyway.