diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-08-20 01:36:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 16:36:17 -0700 |
commit | a18d30fb42838f2e4002338d6e57a25322f9e422 (patch) | |
tree | 930607d9202d35eaf66d784df29162400efd98cb /src/asmjs/asm_v_wasm.cpp | |
parent | b43807a835fc878e5eefcb8b4a18aff62d7f4540 (diff) | |
download | binaryen-a18d30fb42838f2e4002338d6e57a25322f9e422.tar.gz binaryen-a18d30fb42838f2e4002338d6e57a25322f9e422.tar.bz2 binaryen-a18d30fb42838f2e4002338d6e57a25322f9e422.zip |
Replace Type::expand() with an iterator-based approach (#3061)
This leads to simpler code and is a prerequisite for #3012, which makes it so that not all `Type`s are backed by vectors that `expand` could return.
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index 75fc0506b..fca6284c6 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -104,8 +104,8 @@ std::string getSig(Type results, Type params) { assert(!results.isMulti()); std::string sig; sig += getSig(results); - for (Type t : params.expand()) { - sig += getSig(t); + for (auto& param : params) { + sig += getSig(param); } return sig; } |