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