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