Displaying 1 result from an estimated 1 matches for "getmostrecentdecl".
2013 Jan 23
0
[LLVMdev] Build Error while building AST lib. (DeclTemplate.h)
...eTemplateDecl> redeclarable_base;
497 virtual RedeclarableTemplateDecl *getNextRedeclaration() {
498 return RedeclLink.getNext();
499 }
500 virtual RedeclarableTemplateDecl *getPreviousDeclImpl() {
501 return getPreviousDecl();
502 }
503 virtual RedeclarableTemplateDecl *getMostRecentDeclImpl() {
504 return getMostRecentDecl();
505 }
506
507 protected:
508 template <typename EntryType> struct SpecEntryTraits {
509 typedef EntryType DeclType;
510
511 static DeclType *getMostRecentDecl(EntryType *D) {
512 return D->getMostRecentDecl();
513...