Index: client/simple_string_dictionary_test.cc |
diff --git a/client/simple_string_dictionary_test.cc b/client/simple_string_dictionary_test.cc |
index 7cc298f9b6fc05a2f41bcb64aab0c5852b26e463..173fee31d3223ec4493b9f8b5971b66590a07ac4 100644 |
--- a/client/simple_string_dictionary_test.cc |
+++ b/client/simple_string_dictionary_test.cc |
@@ -22,7 +22,7 @@ namespace test { |
namespace { |
TEST(SimpleStringDictionary, Entry) { |
- typedef TSimpleStringDictionary<5, 9, 15> TestMap; |
+ using TestMap = TSimpleStringDictionary<5, 9, 15>; |
TestMap map; |
const TestMap::Entry* entry = TestMap::Iterator(map).Next(); |
@@ -238,7 +238,7 @@ TEST(SimpleStringDictionary, AddRemove) { |
} |
TEST(SimpleStringDictionary, Serialize) { |
- typedef TSimpleStringDictionary<4, 5, 7> TestMap; |
+ using TestMap = TSimpleStringDictionary<4, 5, 7>; |
TestMap map; |
map.SetKeyValue("one", "abc"); |
map.SetKeyValue("two", "def"); |