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
/
Sema
/
SemaDeclCXX.cpp
Age
Commit message (
Expand
)
Author
2012-04-16
Implement C++11 [expr.prim.general]p3, which permits the use of 'this'
Douglas Gregor
2012-04-09
My original patch missed the virtual-base case for destroying
John McCall
2012-04-09
Fix the access check performed as part of the determination of whether
John McCall
2012-04-07
Fix several problems with protected access control:
John McCall
2012-04-05
Point the caret at the error for the 'expected namespace name' diagnostic in
Richard Smith
2012-04-04
Remove dead assignment to local variable.
Ted Kremenek
2012-04-02
PR10217 diagnostic fix: don't say 'copy constructor' when we mean
Richard Smith
2012-04-02
Finish PR10217: Ensure we say that a special member was implicitly, not
Richard Smith
2012-04-02
Implement DR1402: if a field or base class is not movable, the derived class's
Richard Smith
2012-04-02
Basic semantic analysis support for inheriting constructor declarations in
Richard Smith
2012-03-30
PR10217: Provide diagnostics explaining why an implicitly-deleted special
Richard Smith
2012-03-29
Refactor special member function deletion. No functionality change.
Richard Smith
2012-03-28
Unify and fix our checking of C++ [dcl.meaning]p1's requirements
Douglas Gregor
2012-03-16
Skip through transparent contexts when deciding where to add a friend function.
Nick Lewycky
2012-03-13
Ensure that default arguments are handled correctly in sub scopes. For example:
James Molloy
2012-03-13
Fix PR10447: lazily building name lookup tables for DeclContexts was broken.
Richard Smith
2012-03-11
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-03-10
PR12225: The requirement that literal operators be namespace-scope functions
Richard Smith
2012-03-10
Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to
John McCall
2012-03-10
Only make a call to a copy constructor elidable if in fact we are
Douglas Gregor
2012-03-09
[AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart().
Daniel Dunbar
2012-03-09
Literal operators can't have default arguments.
Richard Smith
2012-03-09
Support for raw and template forms of numeric user-defined literals,
Richard Smith
2012-03-08
Implement C++11 [lex.ext]p10 for string and character literals: a ud-suffix not
Richard Smith
2012-03-05
static_assert: Allow any string-literal as the message, not just a character
Richard Smith
2012-03-05
Avoid double lookup.
Benjamin Kramer
2012-03-04
Add tests for [over.literal]. Fix a few bugs which were exposed by the tests.
Richard Smith
2012-03-01
Implement "optimization" for lambda-to-block conversion which inlines the gen...
Eli Friedman
2012-02-27
Ensure that we delete default constructors in the right cases. Don't delete the
Richard Smith
2012-02-26
Ensure that we delete destructors in the right cases. Specifically:
Richard Smith
2012-02-26
Make sure we don't try to produce a definition of an implicitly-deleted function
Richard Smith
2012-02-26
Special members which are defaulted or deleted on their first declaration are
Richard Smith
2012-02-25
Work-in-progress for lambda conversion-to-block operator. Still need to impl...
Eli Friedman
2012-02-24
Implement C++11 [over.match.copy]p1b2, which allows the use of
Douglas Gregor
2012-02-24
C++11 [class.ctor]p5 says that
Douglas Gregor
2012-02-23
Replace some DenseSets with SmallPtrSets. Apart from the "small" optimization...
Benjamin Kramer
2012-02-22
Fix parsing and processing initializer lists in return statements and as dire...
Sebastian Redl
2012-02-22
Generate an AST for the conversion from a lambda closure type to a
Douglas Gregor
2012-02-21
Implement name mangling for lambda expressions that occur within the
Douglas Gregor
2012-02-20
Fix a constexpr FIXME: When implicitly instantiating the primary template for an
Richard Smith
2012-02-19
Emit a warning when list-initializing a std::initializer_list member.
Sebastian Redl
2012-02-18
Add a bunch of missing calls to DiagnoseSentinelCalls. <rdar://problem/10885...
Eli Friedman
2012-02-18
Diagnose uses of deleted destructors and inaccessible defaulted destructors.
Richard Smith
2012-02-18
Initial refactoring of 'ShouldDeleteSpecialMember', in preparation for providing
Richard Smith
2012-02-17
Rework the Sema/AST/IRgen dance for the lambda closure type's
Douglas Gregor
2012-02-16
Implicitly define a lambda's conversion functions (to function
Douglas Gregor
2012-02-15
When overload resolution picks an implicitly-deleted special member
Douglas Gregor
2012-02-14
Implement C++ core issue 974, which permits default arguments for
Douglas Gregor
2012-02-14
Generalize -Wempty-body: warn when statement body is empty (closes: PR11329)
Dmitri Gribenko
2012-02-14
Use a simpler (and more efficient) pattern to pad vectors.
Benjamin Kramer
[next]