aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/build/script/token.cxx
blob: 289dfd230806e93ba449ed2375e6694c5e90bca2 (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, bool d)
      {
        // No build script-specific tokens so far.
        //
        build2::script::token_printer (os, t, d);
      }
    }
  }
}