Closed
Description
Bugzilla Link | 551 |
Resolution | FIXED |
Resolved on | Feb 22, 2010 12:47 |
Version | 1.4 |
OS | All |
Reporter | LLVM Bugzilla Contributor |
Extended Description
error: ambiguous template specialization GetParent<const MetaCpp::Element>' for
MetaCpp::object MetaCpp::ElementImpl::GetParent() const'
gcc version 3.4-llvm 20030924 (experimental)
accepted by gcc 3.3, 3.4 and 4.0
struct B{
template
T blah();
template
T const blah() const;
};
template<>
int const B::blah() const;