[compiler-rt] [libcxxabi] [libunwind] [runtimes][PAC] Harden unwinding when possible (#138571) (PR #143230)
Oliver Hunt via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 6 14:01:06 PDT 2025
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
More information about the llvm-commits
mailing list