index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
AST
/
CXXInheritance.cpp
Age
Commit message (
Expand
)
Author
2012-02-23
Actually remove the duplicated elements from the vector.
Benjamin Kramer
2012-02-23
Unique CXXBasePath decls with the SmallVector/pod_sort/std::unique idiom inst...
Benjamin Kramer
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-04-15
Support for C++11 (non-template) alias declarations.
Richard Smith
2011-01-28
Fix some corner cases in the __is_base_of logic.
John McCall
2010-11-24
Rename RecordLayout::getPrimaryBaseWasVirtual to isPrimaryBaseVirtual.
Anders Carlsson
2010-11-24
Fix typo.
Anders Carlsson
2010-11-24
Add CXXRecordDecl::getIndirectPrimaryBases.
Anders Carlsson
2010-06-04
Add a short circuit in isVirtuallyDerivedFrom.
Anders Carlsson
2010-06-03
Add all final overriders to the map.
Anders Carlsson
2010-05-21
Use CanQualType to enforce the use of a canonical type argument to
Douglas Gregor
2010-03-23
Implement computation of the final overriders for each virtual
Douglas Gregor
2010-03-03
Implement name hiding for names found through virtual base subobjects
Douglas Gregor
2010-03-03
Refactor CXXRecordDecl::lookupInBases() to push the recursion down a
Douglas Gregor
2010-03-03
Revert r97618. Access control sucks
Douglas Gregor
2010-03-03
Factor out the recursive lookup into C++ base classes into a separate,
Douglas Gregor
2010-02-11
Eliminate the ASTContext parameter from RecordDecl::getDefinition()
Douglas Gregor
2010-02-09
Reset the found-virtual-base state unless the *current* base produces a path,
John McCall
2010-01-23
Implement elementary access control.
John McCall
2010-01-20
First pass at collecting access-specifier information along inheritance paths.
John McCall
2009-12-09
In CXXRecordDecl::forallBases, add the base to the "queue", so we walk more t...
Anders Carlsson
2009-12-08
Add CXXRecordDecl::forallBases to walk an inheritance hierarchy with non-lookup
John McCall
2009-11-16
First part of changes to eliminate problems with cv-qualifiers and
Douglas Gregor
2009-11-12
Random const correctness, and incidentally use computeDeclContext when building
John McCall
2009-10-22
Canonicality is a property of qualified types, not unqualified types.
John McCall
2009-10-06
Fix eof.
Mike Stump
2009-10-06
Refactor the code that walks a C++ inheritance hierarchy, searching
Douglas Gregor