diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-03-02 14:49:54 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-03-21 09:27:22 -0700 |
commit | c16bd14416655101cd5e0fc0312b474271ad6470 (patch) | |
tree | 84ee576066556f720516ded20317d25b2ee5393e /test/tile | |
parent | 2dbda72c454342cc8c6b258c7cd26b29ca10d477 (diff) | |
download | qtlocation-mapboxgl-c16bd14416655101cd5e0fc0312b474271ad6470.tar.gz |
[core] Prefer std::map to std::unordered_map for smaller binary size
Diffstat (limited to 'test/tile')
-rw-r--r-- | test/tile/vector_tile.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tile/vector_tile.test.cpp b/test/tile/vector_tile.test.cpp index 49fdcbd9f8..859fd417b0 100644 --- a/test/tile/vector_tile.test.cpp +++ b/test/tile/vector_tile.test.cpp @@ -61,7 +61,7 @@ TEST(VectorTile, Issue7615) { style::SymbolLayer symbolLayer("symbol", "source"); auto symbolBucket = std::make_shared<SymbolBucket>( style::SymbolLayoutProperties::Evaluated(), - std::unordered_map< + std::map< std::string, std::pair<style::IconPaintProperties::Evaluated, style::TextPaintProperties::Evaluated>>(), 0.0f, false, false); |