blob: d5f8af80ccbb4c40422f71f463ebaea010f51699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
** \file ast/assert-exp.hxx
** \brief Inline methods of ast::AssertExp.
*/
#pragma once
#include <ast/assert-exp.hh>
namespace ast
{
inline const Exp& AssertExp::cond_get() const { return *cond_; }
inline Exp& AssertExp::cond_get() { return *cond_; }
} // namespace ast
|