"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "d8c2fbd57fdd003b8960975757ab996fb2196a84"
Add an extension to avoid an error when a global template has the same name as
a member template, and you try to call the member template with an explicit template argument. See PR7247 For example, this downgrades the error to a warning in: template<typename T> struct set{}; struct Value { template<typename T> void set(T value) { } }; void foo() { Value v; v.set<double>(3.2); // Warning here. } llvm-svn: 105518
Loading
Please register or sign in to comment