From 563d4b6cac0076e87bd57e5227e20689c05f44fa Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Fri, 27 Mar 2020 18:30:35 +0200 Subject: [core] Fix performance-move-const-arg errors in header files As reported by clang-tidy-8. --- include/mbgl/style/image.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/mbgl/style/image.hpp b/include/mbgl/style/image.hpp index deb4b6f6ce..d551651cd0 100644 --- a/include/mbgl/style/image.hpp +++ b/include/mbgl/style/image.hpp @@ -47,7 +47,7 @@ public: false, std::move(stretchX), std::move(stretchY), - std::move(content)) {} + content) {} Image(const Image&); std::string getID() const; -- cgit v1.2.1