blob: 8f8477b0c2001b4bda6b0cb4733b921a349db8ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// file : libbuild2/build/script/token.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <libbuild2/build/script/token.hxx>
using namespace std;
namespace build2
{
namespace build
{
namespace script
{
void
token_printer (ostream& os, const token& t, print_mode m)
{
// No buildscript-specific tokens so far.
//
build2::script::token_printer (os, t, m);
}
}
}
}
|