replace ‘typedef’ with ‘using’

issue#70
Houtan Bastani 2018-07-09 11:45:59 +02:00
parent 244552393b
commit 853cce553f
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ private:
set<const MacroValue *> values;
// The map defining an environment
typedef map<string, const MacroValue *> env_t;
using env_t = map<string, const MacroValue *>;
//! Environment: maps macro variables to their values
env_t env;