index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
clang
/
AST
/
DeclFriend.h
Age
Commit message (
Expand
)
Author
2013-05-05
Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr...
Dmitri Gribenko
2013-01-31
Added outer template parameter lists to friend type AST nodes.
Enea Zaffanella
2012-10-11
Remove pointless classof()'s.
Sean Silva
2012-10-04
Fixed friend decl source range.
Abramo Bagnara
2012-09-20
Per C++11 [class.friend]p3, the 'friend' keyword must appear first in a
Richard Smith
2012-07-04
Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h.
Benjamin Kramer
2012-07-04
Drop the ASTContext.h include from Stmt.h and fix up transitive users.
Benjamin Kramer
2012-03-09
[AST/etc] Mark {getSourceRange(),getStartLoc(),getEndLoc()} as LLVM_READONLY.
Daniel Dunbar
2012-01-05
When creating declarations that are deserialized from an module file,
Douglas Gregor
2011-12-20
Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...
David Blaikie
2011-03-04
Fixed end location of FriendDecl.
Abramo Bagnara
2010-10-27
Lazily load the next friend in the chain of FriendDecls, to eliminate
Douglas Gregor
2010-10-16
White-listing templated-scope friend decls is a good idea, but doing it
John McCall
2010-09-01
Make some docstring clarifications, after discussion with dgregor.
Craig Silverstein
2010-08-18
Rename PCHDeclReader -> ASTDeclReader.
Sebastian Redl
2010-08-18
Do the PCH->AST rename for ASTWriter's implementation parts.
Sebastian Redl
2010-06-30
Make the constructor explicit.
Argyrios Kyrtzidis
2010-06-29
Support C++ friend declarations for PCH.
Argyrios Kyrtzidis
2010-04-08
Implement dependent friend function template specializations.
John McCall
2010-03-31
Remove the AST statistics tracking I added yesterday; it didn't pan out.
Douglas Gregor
2010-03-30
Introduce new AST statistics that keep track of the number of isa (or
Douglas Gregor
2010-03-25
Preserve type-source information in friend declarations.
John McCall
2010-03-12
Implement basic support for friend types and functions in non-dependent
John McCall
2010-03-11
Split C++ friend declarations into their own header/implementation file.
John McCall