diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-02 08:59:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-02 09:19:19 +0200 |
commit | d930b5205e277b522c2a7fe4a7c0e08c5a8afee1 (patch) | |
tree | 76d76d3ab31a1801e7992ba61cce1a0218cc672e /libbuild2/script | |
parent | 793e39564b25acc6283d1fd5a842c9799f1efdbe (diff) |
Redo diagnostics without operator<< in namespace std
Diffstat (limited to 'libbuild2/script')
-rw-r--r-- | libbuild2/script/script.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbuild2/script/script.hxx b/libbuild2/script/script.hxx index 81bc13c..5a39659 100644 --- a/libbuild2/script/script.hxx +++ b/libbuild2/script/script.hxx @@ -585,6 +585,10 @@ namespace build2 verify_environment_var_assignment (const string&, const char* prefix, const location&); + + // "Unhide" operator<< from the build2 namespace. + // + using build2::operator<<; } } |