From 853cce553fda8e28476d3a5cd54d7b267d1cbced Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Mon, 9 Jul 2018 11:45:59 +0200 Subject: [PATCH] =?UTF-8?q?replace=20=E2=80=98typedef=E2=80=99=20with=20?= =?UTF-8?q?=E2=80=98using=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/macro/MacroDriver.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macro/MacroDriver.hh b/src/macro/MacroDriver.hh index 4c285be7..43f468fd 100644 --- a/src/macro/MacroDriver.hh +++ b/src/macro/MacroDriver.hh @@ -159,7 +159,7 @@ private: set values; // The map defining an environment - typedef map env_t; + using env_t = map; //! Environment: maps macro variables to their values env_t env;