blob: ae28143f20c2384a81b2c7393f40224dc9809102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// file : build/path-io.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <build/path-io>
#include <ostream>
#include <build/diagnostics>
using namespace std;
namespace build
{
ostream&
operator<< (ostream& os, const path& p)
{
return os << (relative (os) ? diag_relative (p) : p.string ());
}
ostream&
operator<< (ostream& os, const dir_path& d)
{
if (relative (os))
os << diag_relative (d);
else
{
const string& s (d.string ());
// Print the directory with trailing '/'.
//
if (!s.empty ())
os << s << (dir_path::traits::is_separator (s.back ()) ? "" : "/");
}
return os;
}
}
|