blob: 38fd5f6048a0b1ee3925b671338dad4ecb1b43ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file ast/object-exp.hxx
** \brief Inline methods of ast::ObjectExp.
*/
#pragma once
#include <ast/object-exp.hh>
namespace ast
{
inline const NameTy& ObjectExp::type_name_get() const { return *type_name_; }
inline NameTy& ObjectExp::type_name_get() { return *type_name_; }
} // namespace ast
|