Closed samasri closed 6 years ago
I used QualType::getAsString() to get the name. The issue was that apparently template classes are not considered CXXRecordDecl, so I had to find the name using a more general method (not one specific for CXXRecordDecl)
QualType::getAsString()
CXXRecordDecl
I used
QualType::getAsString()
to get the name. The issue was that apparently template classes are not consideredCXXRecordDecl
, so I had to find the name using a more general method (not one specific forCXXRecordDecl
)