From 17d3bd8a9de8a04ff9be4cc5f2a96b01069a2f38 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 16 Dec 2014 21:13:58 -0800 Subject: [PATCH] consistent std::move in image data move ctor --- include/mapnik/image_data.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/image_data.hpp b/include/mapnik/image_data.hpp index 140b77a92..7f9b8aa27 100644 --- a/include/mapnik/image_data.hpp +++ b/include/mapnik/image_data.hpp @@ -109,7 +109,7 @@ public: {} image_data(image_data && rhs) noexcept - : width_(std::move(rhs.width_)), + : width_(std::move(rhs.width_)), height_(std::move(rhs.height_)), buffer_(std::move(rhs.buffer_)), pData_(reinterpret_cast(buffer_.data()))