File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
include/libstatistics_collector/moving_average_statistics
src/libstatistics_collector/moving_average_statistics Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class MovingAverageStatistics
5454 MovingAverageStatistics () = default ;
5555
5656 LIBSTATISTICS_COLLECTOR_PUBLIC
57- explicit MovingAverageStatistics (const std::size_t & window_size);
57+ explicit MovingAverageStatistics (std::size_t window_size);
5858
5959 LIBSTATISTICS_COLLECTOR_PUBLIC
6060 ~MovingAverageStatistics () = default ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace libstatistics_collector
2929namespace moving_average_statistics
3030{
3131
32- MovingAverageStatistics::MovingAverageStatistics (const std::size_t & window_size)
32+ MovingAverageStatistics::MovingAverageStatistics (std::size_t window_size)
3333: window_size_{window_size} {}
3434
3535double MovingAverageStatistics::Average () const
You can’t perform that action at this time.
0 commit comments