/** ** \file ast/typable.hxx ** \brief Inline methods of ast::Typable. */ #pragma once #include namespace ast { // FIXME DONE: Some code was deleted here. inline void Typable::type_set(const type::Type* typ) { // Explicitely casting it? type_ = typ; } inline const type::Type* Typable::type_get() const { return type_; } } // namespace ast