Stack added + found bugs squashed

This commit is contained in:
2019-05-07 19:43:31 +02:00
parent 3edd654f60
commit c1e498dfa0
6 changed files with 99 additions and 6 deletions

View File

@@ -31,7 +31,7 @@ private:
}
public:
void Push(const T value)
void Push(T const & value)
{
data[tail] = value;
AdvanceTail();