diff options
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 |