From 5274d943ec65866089f6764af89205d003a15078 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 29 Nov 2018 12:51:40 -0800 Subject: standardize on 'template<' over 'template <' (i.e., remove a space) (#1782) --- src/mixed_arena.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mixed_arena.h') 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 +template class ArenaVectorBase { protected: T* data = nullptr; @@ -321,7 +321,7 @@ public: // passed in when needed, would make this (and thus Blocks etc. // smaller) -template +template class ArenaVector : public ArenaVectorBase, T> { private: MixedArena& allocator; -- cgit v1.2.3