summaryrefslogtreecommitdiff
path: root/src/mixed_arena.h
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/mixed_arena.h
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/mixed_arena.h')
-rw-r--r--src/mixed_arena.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixed_arena.h b/src/mixed_arena.h
index 10b84c236..4c62514d1 100644
--- a/src/mixed_arena.h
+++ b/src/mixed_arena.h
@@ -158,7 +158,7 @@ struct MixedArena {
//
// TODO: specialize on the initial size of the array
-template <typename SubType, typename T>
+template<typename SubType, typename T>
class ArenaVectorBase {
protected:
T* data = nullptr;
@@ -321,7 +321,7 @@ public:
// passed in when needed, would make this (and thus Blocks etc.
// smaller)
-template <typename T>
+template<typename T>
class ArenaVector : public ArenaVectorBase<ArenaVector<T>, T> {
private:
MixedArena& allocator;