ojhunt wrote: Ok a bunch of these errors are because clang is misdiagnosing this scenario
```cpp
namespace {
template <class T> void foo(T*){}
}
template <class T> void bar(T* t) {
foo(t);
}
```
as not using the template function `foo`
https://github.com/llvm/llvm-project/pull/143230
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
