From 4e665067ff264c55086fdfb776a95b0fbb4d432c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 12 Feb 2016 16:10:48 +0200 Subject: / scheme cleanup --- build2/path-io.cxx | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 build2/path-io.cxx (limited to 'build2/path-io.cxx') diff --git a/build2/path-io.cxx b/build2/path-io.cxx deleted file mode 100644 index 845b0a3..0000000 --- a/build2/path-io.cxx +++ /dev/null @@ -1,39 +0,0 @@ -// file : build2/path-io.cxx -*- C++ -*- -// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd -// license : MIT; see accompanying LICENSE file - -#include - -#include - -#include -#include - -using namespace std; - -namespace build2 -{ - ostream& - operator<< (ostream& os, const path& p) - { - return os << (stream_verb (os) < 2 ? diag_relative (p) : p.string ()); - } - - ostream& - operator<< (ostream& os, const dir_path& d) - { - if (stream_verb (os) < 2) - os << diag_relative (d); // Adds trailing '/'. - 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; - } -} -- cgit v1.1