diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |