diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-08-20 21:35:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 12:35:14 -0700 |
commit | af87f23744477b034dcb1c59af2a1a208becab23 (patch) | |
tree | 1f99d29f17191ecdd121cd15e455cea90b38d303 /src/passes/LegalizeJSInterface.cpp | |
parent | a18d30fb42838f2e4002338d6e57a25322f9e422 (diff) | |
download | binaryen-af87f23744477b034dcb1c59af2a1a208becab23.tar.gz binaryen-af87f23744477b034dcb1c59af2a1a208becab23.tar.bz2 binaryen-af87f23744477b034dcb1c59af2a1a208becab23.zip |
Use const modifier when dealing with types (#3064)
Since they make the code clearer and more self-documenting.
Diffstat (limited to 'src/passes/LegalizeJSInterface.cpp')
-rw-r--r-- | src/passes/LegalizeJSInterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/passes/LegalizeJSInterface.cpp b/src/passes/LegalizeJSInterface.cpp index 9a4dc6b63..7991d7eb3 100644 --- a/src/passes/LegalizeJSInterface.cpp +++ b/src/passes/LegalizeJSInterface.cpp @@ -183,7 +183,7 @@ private: std::map<Name, Name> illegalImportsToLegal; template<typename T> bool isIllegal(T* t) { - for (auto& param : t->sig.params) { + for (const auto& param : t->sig.params) { if (param == Type::i64) { return true; } @@ -223,7 +223,7 @@ private: call->type = func->sig.results; std::vector<Type> legalParams; - for (auto& param : func->sig.params) { + for (const auto& param : func->sig.params) { if (param == Type::i64) { call->operands.push_back(I64Utilities::recreateI64( builder, legalParams.size(), legalParams.size() + 1)); @@ -278,7 +278,7 @@ private: std::vector<Type> params; Index i = 0; - for (auto& param : im->sig.params) { + for (const auto& param : im->sig.params) { if (param == Type::i64) { call->operands.push_back(I64Utilities::getI64Low(builder, i)); call->operands.push_back(I64Utilities::getI64High(builder, i)); |