blob: 9e6e3989e28a74b44cd170c4ee91fd0806f41a8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
** \file ast/location.hh
** \brief Definition of ast::Location.
*/
#pragma once
#include <misc/symbol.hh>
#include <parse/location.hh>
namespace ast
{
using Location = parse::location;
}
|