From be011366f249b8ebed3905030ce3b7021597ee34 Mon Sep 17 00:00:00 2001 From: jantuomi Date: Thu, 1 Sep 2016 11:14:10 +0300 Subject: Add value parsing from stdin, remove value class --- runtime.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime.h') diff --git a/runtime.h b/runtime.h index cdecd84..3572391 100644 --- a/runtime.h +++ b/runtime.h @@ -1,11 +1,11 @@ #pragma once -#include "value.h" #include +#include #include "token.h" class Runtime { private: - std::vector m_values; + std::stack m_values; bool runCommand(const Token& token); public: -- cgit v1.3