================
@@ -70,4 +70,21 @@ bool NestedBuildNamespace::operator<(const
NestedBuildNamespace &Other) const {
return Namespaces < Other.Namespaces;
}
+llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const BuildNamespace &BN)
{
+ OS << "BuildNamespace(" << toString(BN.Kind) << ", " << BN.Name << ")";
+ return OS;
----------------
steakhal wrote:
```suggestion
return OS << "BuildNamespace(" << toString(BN.Kind) << ", " << BN.Name << ")";
```
https://github.com/llvm/llvm-project/pull/181765
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits