blob: 87e04882a335dc503e8aec6171a42d8192f2ec17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file ast/seq-exp.hxx
** \brief Inline methods of ast::SeqExp.
*/
#pragma once
#include <ast/seq-exp.hh>
namespace ast
{
inline const exps_type& SeqExp::exps_get() const { return *exps_; }
inline exps_type& SeqExp::exps_get() { return *exps_; }
} // namespace ast
|