From 95e9d56f3633e6e4ee14a926612b338445dcd39a Mon Sep 17 00:00:00 2001 From: Marius Kittler Date: Wed, 26 Sep 2018 13:34:51 +0200 Subject: [PATCH] Replace typedef with using --- cli/cli.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli.h b/cli/cli.h index f520ff1..7f95fca 100644 --- a/cli/cli.h +++ b/cli/cli.h @@ -15,7 +15,7 @@ #include namespace ApplicationUtilities { -typedef std::vector StringVector; +using StringVector = std::vector; } namespace Io {