aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.cpp
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-09-01 11:14:10 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-09-01 11:14:10 +0300
commitbe011366f249b8ebed3905030ce3b7021597ee34 (patch)
tree3b357df175ba1f484d852d73d4cbf3da9c1910df /runtime.cpp
parentd6b44fb2323b4f6f5e0bd3de33a40d6fd8283c1a (diff)
Add value parsing from stdin, remove value class
Diffstat (limited to 'runtime.cpp')
-rw-r--r--runtime.cpp3
1 files changed, 1 insertions, 2 deletions
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<Token>& tokens) {
for (auto& token : tokens) {
if (!runCommand(token)) {
- Value value(token);
+
}
}
}