From 25b2250c32c1881990718c7de7b87f33ab703e79 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Wed, 10 May 2017 18:51:52 +0300 Subject: [tidy] modernize-use-using --- test/style/style_parser.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/style/style_parser.test.cpp') 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 Message; -typedef std::vector Messages; +using Message = std::pair; +using Messages = std::vector; class StyleParserTest : public ::testing::TestWithParam {}; -- cgit v1.2.1