blob: 7824297c6502f049e0c62ed36085e360c39f56af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file ast/chunk-interface.hxx
** \brief Inline methods for ast/chunk-interface.hh
*/
#pragma once
#include <ast/chunk-interface.hh>
namespace ast
{
inline ChunkInterface::ChunkInterface(const Location& location)
: Ast(location)
{}
} // namespace ast
|