================
@@ -33,4 +33,10 @@ EntityName EntityName::makeQualified(NestedBuildNamespace 
Namespace) const {
   return Copy;
 }
 
+llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const EntityName &EN) {
+  OS << "EntityName(" << EN.USR << ", " << EN.Suffix << ", " << EN.Namespace
+     << ")";
+  return OS;
----------------
steakhal wrote:

```suggestion
  return OS << "EntityName(" << EN.USR << ", " << EN.Suffix << ", " << 
EN.Namespace << ")";
```

https://github.com/llvm/llvm-project/pull/181765
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to