etyloppihacilem wrote:
Thank you for your time and your detailed replies, I effectively mixed things
up with templates and I'm sorry about that. I will try to fix the template
problem today or in the days to come.
I figured another problematic case :
```cpp
template < typename T >
class Test {
public:
Test();
};
template < typename T >
Tes^
```
Where it wrongly completes
```cpp
Test<typename T> // with placeholder around template argument
```
It should look something like
```cpp
Test<T>
```
https://github.com/llvm/llvm-project/pull/165916
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits