diff options
author | Sam Clegg <sbc@chromium.org> | 2022-11-15 10:02:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 18:02:27 +0000 |
commit | 59cbdd818dc3397a823a37e9821fd32f4522b2fc (patch) | |
tree | 58470bfc11591d2e70f1b79645061c1a23beb75d /src/wasm-type.h | |
parent | 236f12f7df64f10e1238bf2d66b1216f700b15df (diff) | |
download | binaryen-59cbdd818dc3397a823a37e9821fd32f4522b2fc.tar.gz binaryen-59cbdd818dc3397a823a37e9821fd32f4522b2fc.tar.bz2 binaryen-59cbdd818dc3397a823a37e9821fd32f4522b2fc.zip |
Switch from `typedef` to `using` in C++ code. NFC (#5258)
This is more modern and (IMHO) easier to read than that old C typedef
syntax.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index dbf99d512..fa365b0e5 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -460,7 +460,7 @@ public: HeapType operator[](size_t i) const { return *Iterator{{this, i}}; } }; -typedef std::vector<Type> TypeList; +using TypeList = std::vector<Type>; // Passed by reference rather than by value because it can own an unbounded // amount of data. @@ -531,7 +531,7 @@ struct Field { unsigned getByteSize() const; }; -typedef std::vector<Field> FieldList; +using FieldList = std::vector<Field>; // Passed by reference rather than by value because it can own an unbounded // amount of data. |