diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-05-10 18:51:52 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-05-12 18:07:36 +0300 |
commit | 25b2250c32c1881990718c7de7b87f33ab703e79 (patch) | |
tree | 0d5b0a1daa8764489a351b8c757d196be315fc24 /test/style | |
parent | fa36110dfbdc05b511a3f85461eaca4a29e446a1 (diff) | |
download | qtlocation-mapboxgl-25b2250c32c1881990718c7de7b87f33ab703e79.tar.gz |
[tidy] modernize-use-using
Diffstat (limited to 'test/style')
-rw-r--r-- | test/style/style_parser.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/style/style_parser.test.cpp b/test/style/style_parser.test.cpp index e3c1da582f..5fa81b47e9 100644 --- a/test/style/style_parser.test.cpp +++ b/test/style/style_parser.test.cpp @@ -16,8 +16,8 @@ using namespace mbgl; -typedef std::pair<uint32_t, std::string> Message; -typedef std::vector<Message> Messages; +using Message = std::pair<uint32_t, std::string>; +using Messages = std::vector<Message>; class StyleParserTest : public ::testing::TestWithParam<std::string> {}; |