diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-12-19 17:10:51 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-01-04 17:38:33 -0800 |
commit | 59803d3025683a255737b5ae29bd7fc531a975a3 (patch) | |
tree | 7cf466d722379dc75ef878dccfdaa7965906ddbe /include | |
parent | 1b7dfff5cf9bafb832c34449f789ab7096dee0fb (diff) | |
download | qtlocation-mapboxgl-59803d3025683a255737b5ae29bd7fc531a975a3.tar.gz |
[core] Use PropertyMap typedef
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/filter_evaluator.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/style/filter_evaluator.hpp b/include/mbgl/style/filter_evaluator.hpp index cf9877da26..659f554bba 100644 --- a/include/mbgl/style/filter_evaluator.hpp +++ b/include/mbgl/style/filter_evaluator.hpp @@ -173,8 +173,8 @@ private: return false; } - bool operator()(const std::unordered_map<std::string, Value>&, - const std::unordered_map<std::string, Value>&) const { + bool operator()(const PropertyMap&, + const PropertyMap&) const { // Should be unreachable; nested values are not currently allowed by the style specification. assert(false); return false; |