summaryrefslogtreecommitdiff
path: root/include/mbgl/style/function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/function.hpp')
-rw-r--r--include/mbgl/style/function.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/style/function.hpp b/include/mbgl/style/function.hpp
index da2659c76a..44ffa31079 100644
--- a/include/mbgl/style/function.hpp
+++ b/include/mbgl/style/function.hpp
@@ -12,8 +12,8 @@ public:
using Stop = std::pair<float, T>;
using Stops = std::vector<Stop>;
- explicit Function(const Stops& stops_, float base_)
- : base(base_), stops(stops_) {}
+ explicit Function(Stops stops_, float base_)
+ : base(base_), stops(std::move(stops_)) {}
float getBase() const { return base; }
const std::vector<std::pair<float, T>>& getStops() const { return stops; }