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
/
SemaNamedCast.cpp
Age
Commit message (
Expand
)
Author
2009-07-18
Rename file in preparation of properly implementing C-style casts in C++.
Sebastian Redl
2009-07-17
Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods
Ted Kremenek
2009-07-17
Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ...
Ted Kremenek
2009-07-17
Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>().
Ted Kremenek
2009-07-16
Add member template 'Type::getAs<T>', which converts a Type* to a respective T*.
Ted Kremenek
2009-05-16
Reflow some comments.
Mike Stump
2009-05-10
Implement C++0x nullptr.
Sebastian Redl
2009-05-01
Replace more release+static_cast with takeAs.
Anders Carlsson
2009-03-24
Fix a few isObjectTypes that really need to be isIncompleteOrObject
Douglas Gregor
2009-03-22
Implement static_cast from lvalue to rvalue reference.
Sebastian Redl
2009-03-16
Almost complete implementation of rvalue references. One bug, and a few uncle...
Sebastian Redl
2009-03-15
Convert a bunch of actions to smart pointers, and also bring PrintParserCallb...
Sebastian Redl
2009-03-09
Rename DiagnoseIncompleteType to RequireCompleteType, and update the document...
Douglas Gregor
2009-02-28
Eliminate CXXRecordType
Douglas Gregor
2009-02-07
Overhaul of Stmt allocation:
Ted Kremenek
2009-01-29
move library-specific diagnostic headers into library private dirs. Reduce
Chris Lattner
2009-01-28
Implement pointer to member handling in static_cast.
Sebastian Redl
2009-01-27
Add handling of member pointers to reinterpret_cast.
Sebastian Redl
2009-01-27
Split the single monolithic DiagnosticKinds.def file into one
Chris Lattner
2009-01-26
Add support for member pointers to const_cast.
Sebastian Redl
2009-01-19
Centralize error reporting of improper uses of incomplete types in the
Douglas Gregor
2008-12-17
Delay semantic analysis of the C++ names casts when the subexpression is type...
Douglas Gregor
2008-11-24
Change a whole lot of diagnostics to take QualType's directly
Chris Lattner
2008-11-20
remove another old-school Diag method.
Chris Lattner
2008-11-18
start converting Sema over to using its canonical Diag method.
Chris Lattner
2008-11-08
Move named cast helpers out of Sema, as Chris requested. This requirse making...
Sebastian Redl
2008-11-07
Greatly improve static_cast diagnostics
Sebastian Redl
2008-11-06
Sema-check virtual declarations. Complete dynamic_cast checking.
Sebastian Redl
2008-11-05
Improve assert messages.
Sebastian Redl
2008-11-05
Move named cast sema functions to their own file.
Sebastian Redl