summaryrefslogtreecommitdiff
path: root/src/wasm-s-parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r--src/wasm-s-parser.h2
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_;