blob: 5ee44f735189d1762d4692ee0d96d496ea3c5c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// file : libbuild2/version/module.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <libbuild2/version/module.hxx>
using namespace std;
namespace build2
{
namespace version
{
const string module::name ("version");
}
}
|