From 26c8310954fb4d8db6df7cc05a25a93731855977 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Wed, 5 Mar 2014 15:13:39 +0100 Subject: [PATCH] Add note --- tstl/include/string.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tstl/include/string.hpp b/tstl/include/string.hpp index 93a98fce..c7dfe638 100644 --- a/tstl/include/string.hpp +++ b/tstl/include/string.hpp @@ -41,6 +41,8 @@ struct base_long { static constexpr const size_t min_capacity = 16; static constexpr const size_t words = min_capacity / sizeof(size_t); +//TODO Store size into base and use only one unsigned char for base_short + template struct base_short { CharT data[min_capacity];