aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.cpp
diff options
context:
space:
mode:
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);
+
}
}
}