diff options
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r-- | src/wasm-s-parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h index 67459dba9..524bc5a3c 100644 --- a/src/wasm-s-parser.h +++ b/src/wasm-s-parser.h @@ -42,7 +42,7 @@ public: // An element in an S-Expression: a list or a string // class Element { - typedef ArenaVector<Element*> List; + using List = ArenaVector<Element*>; bool isList_ = true; List list_; |