blob: 0308ba70c8d7316e804c47febee189794c59959f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
** \file ast/int-exp.hxx
** \brief Inline methods of ast::IntExp.
*/
#pragma once
#include <ast/int-exp.hh>
namespace ast
{
inline int IntExp::value_get() const { return value_; }
} // namespace ast
|