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/cc | |
parent | 793e39564b25acc6283d1fd5a842c9799f1efdbe (diff) |
Redo diagnostics without operator<< in namespace std
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/lexer.test.cxx | 1 | ||||
-rw-r--r-- | libbuild2/cc/types.hxx | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libbuild2/cc/lexer.test.cxx b/libbuild2/cc/lexer.test.cxx index 0d7d12f..39e4279 100644 --- a/libbuild2/cc/lexer.test.cxx +++ b/libbuild2/cc/lexer.test.cxx @@ -6,6 +6,7 @@ #include <libbuild2/types.hxx> #include <libbuild2/utility.hxx> +#include <libbuild2/cc/types.hxx> #include <libbuild2/cc/lexer.hxx> #undef NDEBUG diff --git a/libbuild2/cc/types.hxx b/libbuild2/cc/types.hxx index c5b35f5..93f31bc 100644 --- a/libbuild2/cc/types.hxx +++ b/libbuild2/cc/types.hxx @@ -175,6 +175,10 @@ namespace build2 const target_type& bmi; const target_type& hbmi; }; + + // "Unhide" operator<< from the build2 namespace. + // + using build2::operator<<; } } |