summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaTemplateVariadic.cpp
Commit message (Expand)AuthorAgeFilesLines
* Don't crash on an invalid trailing return type on a function before a '...'Nico Weber2014-12-301-5/+5
* Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...David Blaikie2014-11-191-1/+1
* [c++1z] N4295: fold-expressions.Richard Smith2014-11-081-0/+105
* Pass around CorrectionCandidateCallbacks as unique_ptrs soKaelyn Takata2014-10-271-4/+4
* Fix for PR20660, where unexpanded parameter pack in function parameter clause...Larisse Voufo2014-08-291-7/+31
* Reject varargs '...' in function prototype if there are more parameters afterRichard Smith2014-08-111-0/+14
* Refactoring. Remove Owned method from Sema.Nikola Smiljanic2014-05-291-2/+2
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-261-5/+5
* Initial implementation of -modules-earch-all option, for searching for symbol...John Thompson2014-04-231-1/+1
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-121-1/+1
* [C++11] Replace llvm::tie with std::tie.Benjamin Kramer2014-03-021-5/+5
* Sort all the #include lines with LLVM's utils/sort_includes.py whichChandler Carruth2014-01-071-1/+1
* Remove OpenCL-specific type keywords and specifiersAlp Toker2013-12-181-8/+0
* Refactor all diagnosing of TypoCorrections through a common function, inRichard Smith2013-08-171-8/+4
* Fix one place I missed that was memcpy'ing TypeLocs in a way that messesEli Friedman2013-06-201-0/+60
* Re-commit r183466 with a fix to make the TypeLoc casting machinery workEli Friedman2013-06-071-10/+7
* Reverts r183466: "Perform dynamic alignment computations..."Manuel Klimek2013-06-071-7/+10
* Perform dynamic alignment computations so that the data in TypeLocs isEli Friedman2013-06-071-10/+7
* First pass of semantic analysis for init-captures: check the initializer, buildRichard Smith2013-05-161-2/+6
* Implement C++1y decltype(auto).Richard Smith2013-04-261-0/+1
* Use None rather than Optional<T>() where possible.David Blaikie2013-02-211-5/+4
* Include llvm::Optional in clang/Basic/LLVM.hDavid Blaikie2013-02-201-21/+18
* Replace TypeLoc llvm::cast support to be well-defined.David Blaikie2013-02-181-1/+2
* Add OpenCL samplers as Clang builtin types and check sampler related restrict...Guy Benyei2013-02-071-0/+1
* This patch makes "&Cls::purevfn" not an odr use. This isn't what the standardNick Lewycky2013-02-021-1/+1
* Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei2013-01-201-0/+1
* Re-commit r170428 changes with Linux style file endings.Guy Benyei2012-12-181-0/+6
* Revert changes from r170428, as I accidentally changed the line endings of th...Guy Benyei2012-12-181-6/+0
* Add OpenCL images as clang builtin types.Guy Benyei2012-12-181-0/+6
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-041-3/+3
* Improved MSVC __interface support by adding first class support for it, inste...Joao Matos2012-08-311-0/+1
* PR12057: Allow variadic template pack expansions to cross lambda boundaries.Richard Smith2012-07-251-25/+64
* PR13386: When matching up parameters between a function template declarationRichard Smith2012-07-181-7/+17
* For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this isRichard Smith2012-04-041-0/+1
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-111-2/+2
* Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall2012-03-101-9/+0
* Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek2012-03-061-0/+16
* Fix the isReferenced bit on parameters in a couple of edge cases. PR12153.Eli Friedman2012-03-011-0/+2
* ArrayRef-icize the function arguments.Bill Wendling2012-02-221-1/+1
* Make the callback object to Sema::CorrectTypo mandatory.Kaelyn Uhrain2012-01-311-1/+1
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-3/+0
* Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo.Kaelyn Uhrain2012-01-131-13/+24
* Check for unexpanded parameter packs in the name that guards aDouglas Gregor2011-10-251-13/+34
* Provide half floating point support as a storage only type.Anton Korobeynikov2011-10-141-0/+1
* Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman2011-10-061-1/+2
* ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPa...David Blaikie2011-09-221-9/+10
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-231-16/+16
* Add support for C++ namespace-aware typo correction, e.g., correctingDouglas Gregor2011-06-281-7/+9
* Implement a new type node, UnaryTransformType, designed to represent aSean Hunt2011-05-241-1/+1
* Implement __underlying_type for libc++.Sean Hunt2011-05-191-1/+2