summaryrefslogtreecommitdiff
path: root/src/mbgl/storage
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-12-01 17:45:21 +0100
committerKonstantin Käfer <mail@kkaefer.com>2015-12-03 15:38:36 +0100
commit478472e501a6aa579174f547277176c19104deb1 (patch)
tree12f9852c9c64725f8bbded04ee916c720fdf9dd8 /src/mbgl/storage
parentd5fb535058d4d97567b08064e0203f45c2c8370f (diff)
downloadqtlocation-mapboxgl-478472e501a6aa579174f547277176c19104deb1.tar.gz
[core] add std::move to constructors
Diffstat (limited to 'src/mbgl/storage')
-rw-r--r--src/mbgl/storage/request_base.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mbgl/storage/request_base.hpp b/src/mbgl/storage/request_base.hpp
index 0f3e257ad1..5e99041cd4 100644
--- a/src/mbgl/storage/request_base.hpp
+++ b/src/mbgl/storage/request_base.hpp
@@ -7,6 +7,7 @@
#include <memory>
#include <functional>
+#include <utility>
namespace mbgl {
@@ -18,7 +19,7 @@ public:
RequestBase(const Resource& resource_, Callback notify_)
: resource(resource_)
- , notify(notify_) {
+ , notify(std::move(notify_)) {
}
virtual ~RequestBase() = default;