diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-06 18:14:40 +0200 | 
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-06 18:14:40 +0200 | 
| commit | e5fda1c96af409065fedbe032b0f7908d9f312ac (patch) | |
| tree | 9558506a84f45c3b3e24c0cfd4ae5e43c973d04a /lib | |
| parent | 471ef9b710f88765d871ab079f8485ba0268201d (diff) | |
| download | fwd-e5fda1c96af409065fedbe032b0f7908d9f312ac.tar.gz fwd-e5fda1c96af409065fedbe032b0f7908d9f312ac.zip | |
add types to parser
+ No actual type checking is implemented as of yet, but with references
  and pointers I should be able to start playing around with checking
  move semantics and so on
+ Might at some point also look into type propagation for let,
  annoying to have to specify the same thing twice.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fwdlib.hpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp index 034c91a..3efac61 100644 --- a/lib/fwdlib.hpp +++ b/lib/fwdlib.hpp @@ -4,6 +4,7 @@  #include <string>  #include <optional>  #include <iostream> +#include <functional>  #include <unordered_map>  #include <unordered_set> | 
