diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-11-29 12:51:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 12:51:40 -0800 |
commit | 5274d943ec65866089f6764af89205d003a15078 (patch) | |
tree | 124408fcd21374fb9ca22cef39d0378002161480 /src/wasm/wasm-validator.cpp | |
parent | 0b425638bdafe7be7ed914943de931b491881e23 (diff) | |
download | binaryen-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/wasm/wasm-validator.cpp')
-rw-r--r-- | src/wasm/wasm-validator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp index 0b0d165ed..092394ad3 100644 --- a/src/wasm/wasm-validator.cpp +++ b/src/wasm/wasm-validator.cpp @@ -31,7 +31,7 @@ namespace wasm { // Print anything that can be streamed to an ostream -template <typename T, +template<typename T, typename std::enable_if< !std::is_base_of<Expression, typename std::remove_pointer<T>::type>::value >::type* = nullptr> @@ -75,7 +75,7 @@ struct ValidationInfo { // printing and error handling support - template <typename T, typename S> + template<typename T, typename S> std::ostream& fail(S text, T curr, Function* func) { valid.store(false); auto& stream = getStream(func); |