From 4af14b8c3e2b8c0ef230158b91e8a890dc34e523 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 25 Feb 2023 13:39:04 -0500 Subject: reduce built-in word count --- dictionary.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dictionary.cpp') diff --git a/dictionary.cpp b/dictionary.cpp index cb2aba8..199f3ed 100644 --- a/dictionary.cpp +++ b/dictionary.cpp @@ -23,8 +23,8 @@ Addr Dictionary::allot(Cell amount) noexcept { - Addr old = here; - here += amount; + Addr old = here(); + here(old + amount); return old; } @@ -44,8 +44,8 @@ Addr Dictionary::aligned(Addr addr) const noexcept Addr Dictionary::alignhere() noexcept { - here = aligned(here); - return here; + here(aligned(here())); + return here(); } void Dictionary::addDefinition(Word word) noexcept -- cgit v1.2.3