diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-07 11:12:43 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-07 11:12:43 +0200 |
commit | 882583f64e517ab232edb6bbb7433631c655c9da (patch) | |
tree | 3d0e8e16c20b1346cb34961c7f908b07427e9632 /libbuild2/diagnostics.hxx | |
parent | cf18da3ac461087ccffd31222dbe4fa2e6428d56 (diff) |
Initial work on path_name use for `-` to stdin/stdout translation
Diffstat (limited to 'libbuild2/diagnostics.hxx')
-rw-r--r-- | libbuild2/diagnostics.hxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libbuild2/diagnostics.hxx b/libbuild2/diagnostics.hxx index 6d06dec..9008fc3 100644 --- a/libbuild2/diagnostics.hxx +++ b/libbuild2/diagnostics.hxx @@ -300,6 +300,15 @@ namespace build2 location_prologue_base (const char* type, const char* mod, const char* name, + const path_name& f, + stream_verbosity sverb) + : type_ (type), mod_ (mod), name_ (name), + loc_ (f), + sverb_ (sverb) {} + + location_prologue_base (const char* type, + const char* mod, + const char* name, path&& f, stream_verbosity sverb) : type_ (type), mod_ (mod), name_ (name), @@ -346,6 +355,12 @@ namespace build2 return location_prologue (epilogue_, type_, mod_, name_, l, sverb_ ()); } + location_prologue + operator() (const path_name& f) const + { + return location_prologue (epilogue_, type_, mod_, name_, f, sverb_ ()); + } + // fail (relative (src)) << ... // location_prologue |