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.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'runtime.cpp') diff --git a/runtime.cpp b/runtime.cpp index b4db6a8..4edb3e6 100644 --- a/runtime.cpp +++ b/runtime.cpp @@ -1,5 +1,4 @@ #include "runtime.h" -#include "value.h" Runtime::Runtime() { @@ -14,7 +13,7 @@ bool Runtime::runCommand(const Token& token) { void Runtime::run(std::vector& tokens) { for (auto& token : tokens) { if (!runCommand(token)) { - Value value(token); + } } } -- cgit v1.3