Replace typedef with using

This commit is contained in:
Marius Kittler 2018-09-26 13:34:51 +02:00
parent 1f338c515c
commit 95e9d56f36
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
#include <vector>
namespace ApplicationUtilities {
typedef std::vector<std::string> StringVector;
using StringVector = std::vector<std::string>;
}
namespace Io {