summaryrefslogtreecommitdiff
path: root/src/cfg/Relooper.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/cfg/Relooper.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/cfg/Relooper.cpp')
-rw-r--r--src/cfg/Relooper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg/Relooper.cpp b/src/cfg/Relooper.cpp
index 17bccc451..bdb3f9008 100644
--- a/src/cfg/Relooper.cpp
+++ b/src/cfg/Relooper.cpp
@@ -29,7 +29,7 @@
namespace CFG {
-template <class T, class U> static bool contains(const T& container, const U& contained) {
+template<class T, class U> static bool contains(const T& container, const U& contained) {
return !!container.count(contained);
}