blob: 6d1c91c8ca2e1db1e3ac5491335caa42159b250a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file ast/record-ty.hxx
** \brief Inline methods of ast::RecordTy.
*/
#pragma once
#include <ast/record-ty.hh>
namespace ast
{
inline const fields_type& RecordTy::fields_get() const { return *fields_; }
inline fields_type& RecordTy::fields_get() { return *fields_; }
} // namespace ast
|