diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
commit | af51fb5bdfd9c338b7cf8b75b792e04a2667af5e (patch) | |
tree | 0d6baf72acf05d263dcd8ed0b13888fb6265df81 /libalee/corewords.hpp | |
parent | 5162349f925dfc48f7269538b9cdb1c06df8d5ff (diff) |
add LIBALEE_SECTION; minor fixes
Diffstat (limited to 'libalee/corewords.hpp')
-rw-r--r-- | libalee/corewords.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp index d5c35ea..f4ab851 100644 --- a/libalee/corewords.hpp +++ b/libalee/corewords.hpp @@ -19,9 +19,9 @@ #ifndef ALEEFORTH_COREWORDS_HPP #define ALEEFORTH_COREWORDS_HPP -#include "ctype.hpp" +#include "config.hpp" #include "types.hpp" -#include "state.hpp" +#include "dictionary.hpp" /** * To be implemented by the user, this function is called when the `sys` word @@ -61,6 +61,7 @@ public: private: template<typename Iter> + LIBALEE_SECTION constexpr static Cell findi(Iter it, std::size_t size) { const char *ptr = CoreWords::wordsarr; |