blob: c191eecb66cd308a7fd53017911753db38a0e6a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : build/types -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_TYPES
#define BUILD_TYPES
#include <vector>
#include <build/path>
namespace build
{
// Commonly-used types.
//
typedef std::vector<path> paths;
}
#endif // BUILD_TYPES
|