File tree Expand file tree Collapse file tree
modules/squarepine_core/maths Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,10 +15,16 @@ class MovingAccumulator final
1515 MovingAccumulator () noexcept = default ;
1616
1717 /* * Creates a copy of another MovingAccumulator. */
18- MovingAccumulator (const MovingAccumulator& other ) noexcept = default ;
18+ MovingAccumulator (const MovingAccumulator&) noexcept = default ;
1919
2020 /* * Copies another MovingAccumulator into this one. */
21- MovingAccumulator& operator = (const MovingAccumulator& other) noexcept = default ;
21+ MovingAccumulator& operator = (const MovingAccumulator&) noexcept = default ;
22+
23+ /* * Creates a move of another MovingAccumulator. */
24+ MovingAccumulator (MovingAccumulator&&) noexcept = default ;
25+
26+ /* * Moves another MovingAccumulator into this one. */
27+ MovingAccumulator& operator = (MovingAccumulator&&) noexcept = default ;
2228
2329 /* * Destructor. */
2430 ~MovingAccumulator () noexcept = default ;
You can’t perform that action at this time.
0 commit comments