diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-12-01 17:45:21 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-12-03 15:38:36 +0100 |
commit | 478472e501a6aa579174f547277176c19104deb1 (patch) | |
tree | 12f9852c9c64725f8bbded04ee916c720fdf9dd8 /test/sprite | |
parent | d5fb535058d4d97567b08064e0203f45c2c8370f (diff) | |
download | qtlocation-mapboxgl-478472e501a6aa579174f547277176c19104deb1.tar.gz |
[core] add std::move to constructors
Diffstat (limited to 'test/sprite')
-rw-r--r-- | test/sprite/sprite_store.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/sprite/sprite_store.cpp b/test/sprite/sprite_store.cpp index fd8f3616f5..574af51b81 100644 --- a/test/sprite/sprite_store.cpp +++ b/test/sprite/sprite_store.cpp @@ -7,6 +7,7 @@ #include <mbgl/util/async_task.hpp> #include <mbgl/util/run_loop.hpp> #include <mbgl/util/thread.hpp> +#include <utility> using namespace mbgl; @@ -156,7 +157,7 @@ struct SpriteParams { class SpriteThread : public SpriteStore::Observer { public: - SpriteThread(FileSource* fileSource, SpriteTestCallback callback) : callback_(callback) { + SpriteThread(FileSource* fileSource, SpriteTestCallback callback) : callback_(std::move(callback)) { util::ThreadContext::setFileSource(fileSource); } |