diff options
Diffstat (limited to 'tiger-compiler/src/ast/typable.cc')
| -rw-r--r-- | tiger-compiler/src/ast/typable.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tiger-compiler/src/ast/typable.cc b/tiger-compiler/src/ast/typable.cc new file mode 100644 index 0000000..889aa4b --- /dev/null +++ b/tiger-compiler/src/ast/typable.cc @@ -0,0 +1,15 @@ +/** + ** \file ast/typable.cc + ** \brief Implementation of ast::Typable. + */ + +#include <ast/typable.hh> +#include <ast/visitor.hh> + +namespace ast +{ + // FIXME DONE: Some code was deleted here. + Typable::Typable() + : type_(nullptr) + {} +} // namespace ast |
