aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index d3bbe42..c3267ba 100644
--- a/main.cpp
+++ b/main.cpp
@@ -22,7 +22,7 @@
#include <span>
#include <string>
-static std::array<forth::cell, 1024> dict;
+static std::array<cell, 1024> dict;
static auto fth = new (dict.data()) forth;
static bool parse_stream(forth *, std::istream&, bool say_okay = false);
@@ -38,7 +38,7 @@ int main(int argc, const char *argv[])
std::cout << buf << ' ';
});
fth->add("emit", [](auto) { std::cout << static_cast<char>(fth->pop()); });
- fth->add("dictsize", [](auto) { fth->push(dict.size() * sizeof(forth::cell)); });
+ fth->add("dictsize", [](auto) { fth->push(dict.size() * sizeof(cell)); });
for (auto arg : args) {
if (std::ifstream file {arg}; parse_stream(fth, file))