summaryrefslogtreecommitdiff
path: root/src/mbgl/sprite
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-10 18:51:52 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-12 18:07:36 +0300
commit25b2250c32c1881990718c7de7b87f33ab703e79 (patch)
tree0d5b0a1daa8764489a351b8c757d196be315fc24 /src/mbgl/sprite
parentfa36110dfbdc05b511a3f85461eaca4a29e446a1 (diff)
downloadqtlocation-mapboxgl-25b2250c32c1881990718c7de7b87f33ab703e79.tar.gz
[tidy] modernize-use-using
Diffstat (limited to 'src/mbgl/sprite')
-rw-r--r--src/mbgl/sprite/sprite_atlas.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/sprite/sprite_atlas.hpp b/src/mbgl/sprite/sprite_atlas.hpp
index 5afddaebce..5d99677726 100644
--- a/src/mbgl/sprite/sprite_atlas.hpp
+++ b/src/mbgl/sprite/sprite_atlas.hpp
@@ -38,8 +38,8 @@ public:
float height;
};
-typedef std::map<std::string, SpriteAtlasElement> IconMap;
-typedef std::set<std::string> IconDependencies;
+using IconMap = std::map<std::string, SpriteAtlasElement>;
+using IconDependencies = std::set<std::string>;
class IconRequestor {
public: