From 369caf503d6e42ffd53b33a201ba105d0b30c16b Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Tue, 9 Dec 2014 23:51:19 +0100 Subject: [PATCH] Typedef for the inner type of the vector. Cloonel Jump doesn't have this but it's a minor change and I should really add it there as well. --- include/implem/vector.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/implem/vector.hpp b/include/implem/vector.hpp index af20053..87e2ffd 100644 --- a/include/implem/vector.hpp +++ b/include/implem/vector.hpp @@ -40,6 +40,8 @@ namespace cloonel { class Vector { template friend class Vector; public: + typedef T value_type; + #if defined(DONT_GUESS_NOEXCEPT) Vector ( void ) = default; explicit Vector ( T parValue );