blob: 889aa4bc705cceeed40b1b943d23f62f53d68edc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|