summaryrefslogtreecommitdiff
path: root/src/passes/I64ToI32Lowering.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-11-29 12:51:40 -0800
committerGitHub <noreply@github.com>2018-11-29 12:51:40 -0800
commit5274d943ec65866089f6764af89205d003a15078 (patch)
tree124408fcd21374fb9ca22cef39d0378002161480 /src/passes/I64ToI32Lowering.cpp
parent0b425638bdafe7be7ed914943de931b491881e23 (diff)
downloadbinaryen-5274d943ec65866089f6764af89205d003a15078.tar.gz
binaryen-5274d943ec65866089f6764af89205d003a15078.tar.bz2
binaryen-5274d943ec65866089f6764af89205d003a15078.zip
standardize on 'template<' over 'template <' (i.e., remove a space) (#1782)
Diffstat (limited to 'src/passes/I64ToI32Lowering.cpp')
-rw-r--r--src/passes/I64ToI32Lowering.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/passes/I64ToI32Lowering.cpp b/src/passes/I64ToI32Lowering.cpp
index 9e6fd106b..200cebedb 100644
--- a/src/passes/I64ToI32Lowering.cpp
+++ b/src/passes/I64ToI32Lowering.cpp
@@ -236,7 +236,7 @@ struct I64ToI32Lowering : public WalkerPass<PostWalker<I64ToI32Lowering>> {
}
// If and Select have identical code
- template <typename T>
+ template<typename T>
void visitBranching(T* curr) {
if (!hasOutParam(curr->ifTrue)) return;
assert(curr->ifFalse != nullptr && "Nullable ifFalse found");
@@ -323,10 +323,10 @@ struct I64ToI32Lowering : public WalkerPass<PostWalker<I64ToI32Lowering>> {
replaceCurrent(result);
}
- template <typename T>
+ template<typename T>
using BuilderFunc = std::function<T*(std::vector<Expression*>&, Type)>;
- template <typename T>
+ template<typename T>
void visitGenericCall(T* curr, BuilderFunc<T> callBuilder) {
std::vector<Expression*> args;
for (auto* e : curr->operands) {