diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-16 16:33:24 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-17 13:20:25 -0700 |
commit | 3c49fdc99d9177a2751361f3151cc562aa1f77a3 (patch) | |
tree | 719a95c6e75f48f0668f85a8860a809e891d0672 /include/mbgl/util/feature.hpp | |
parent | b7d395fcf64f4098f3a3ca01f8613f2249d60fa3 (diff) | |
download | qtlocation-mapboxgl-3c49fdc99d9177a2751361f3151cc562aa1f77a3.tar.gz |
[core] Feature IDs are always integers
Diffstat (limited to 'include/mbgl/util/feature.hpp')
-rw-r--r-- | include/mbgl/util/feature.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/util/feature.hpp b/include/mbgl/util/feature.hpp index c9dbc31769..7747d34ee9 100644 --- a/include/mbgl/util/feature.hpp +++ b/include/mbgl/util/feature.hpp @@ -13,7 +13,7 @@ public: Feature(geometry_type&& geometry_) : mapbox::geometry::feature<double> { std::move(geometry_) } {} - optional<Value> id {}; + optional<uint64_t> id; }; } // namespace mbgl |