summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2017-11-07 16:50:47 -0800
committerChris Loer <chris.loer@gmail.com>2017-11-07 16:50:47 -0800
commit6d6d1fcacff7270a37b3dd53f0259a1d0aabc31a (patch)
tree8c9363acaa1b8dd0d8025aefc8adf177a3e871b4
parentfccd78f806ce77a8ff75bafc0dca16db8e6c253b (diff)
downloadqtlocation-mapboxgl-6d6d1fcacff7270a37b3dd53f0259a1d0aabc31a.tar.gz
Fix clang-tidy error.
-rw-r--r--src/mbgl/geometry/feature_index.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/geometry/feature_index.hpp b/src/mbgl/geometry/feature_index.hpp
index 0e8b0cb85e..07dc1b1558 100644
--- a/src/mbgl/geometry/feature_index.hpp
+++ b/src/mbgl/geometry/feature_index.hpp
@@ -36,7 +36,7 @@ public:
, sourceLayerName(std::move(sourceLayerName_))
, bucketName(std::move(bucketName_))
, sortIndex(std::move(sortIndex_))
- , sourceID(sourceID_)
+ , sourceID(std::move(sourceID_))
, z(z_)
, x(x_)
, y(y_)