aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaTemplateVariadic.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-30Don't crash on an invalid trailing return type on a function before a '...'Nico Weber1-5/+5
2014-11-19Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...David Blaikie1-1/+1
2014-11-08[c++1z] N4295: fold-expressions.Richard Smith1-0/+105
2014-10-27Pass around CorrectionCandidateCallbacks as unique_ptrs soKaelyn Takata1-4/+4
2014-08-29Fix for PR20660, where unexpanded parameter pack in function parameter clause...Larisse Voufo1-7/+31
2014-08-11Reject varargs '...' in function prototype if there are more parameters afterRichard Smith1-0/+14
2014-05-29Refactoring. Remove Owned method from Sema.Nikola Smiljanic1-2/+2
2014-05-26[C++11] Use 'nullptr'. Sema edition.Craig Topper1-5/+5
2014-04-23Initial implementation of -modules-earch-all option, for searching for symbol...John Thompson1-1/+1
2014-03-12[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-1/+1
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer1-5/+5
2014-01-07Sort all the #include lines with LLVM's utils/sort_includes.py whichChandler Carruth1-1/+1
2013-12-18Remove OpenCL-specific type keywords and specifiersAlp Toker1-8/+0
2013-08-17Refactor all diagnosing of TypoCorrections through a common function, inRichard Smith1-8/+4
2013-06-20Fix one place I missed that was memcpy'ing TypeLocs in a way that messesEli Friedman1-0/+60
2013-06-07Re-commit r183466 with a fix to make the TypeLoc casting machinery workEli Friedman1-10/+7
2013-06-07Reverts r183466: "Perform dynamic alignment computations..."Manuel Klimek1-7/+10
2013-06-07Perform dynamic alignment computations so that the data in TypeLocs isEli Friedman1-10/+7
2013-05-16First pass of semantic analysis for init-captures: check the initializer, buildRichard Smith1-2/+6
2013-04-26Implement C++1y decltype(auto).Richard Smith1-0/+1
2013-02-21Use None rather than Optional<T>() where possible.David Blaikie1-5/+4
2013-02-20Include llvm::Optional in clang/Basic/LLVM.hDavid Blaikie1-21/+18
2013-02-18Replace TypeLoc llvm::cast support to be well-defined.David Blaikie1-1/+2
2013-02-07Add OpenCL samplers as Clang builtin types and check sampler related restrict...Guy Benyei1-0/+1
2013-02-02This patch makes "&Cls::purevfn" not an odr use. This isn't what the standardNick Lewycky1-1/+1
2013-01-20Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei1-0/+1
2012-12-18Re-commit r170428 changes with Linux style file endings.Guy Benyei1-0/+6
2012-12-18Revert changes from r170428, as I accidentally changed the line endings of th...Guy Benyei1-6/+0
2012-12-18Add OpenCL images as clang builtin types.Guy Benyei1-0/+6
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-3/+3
2012-08-31Improved MSVC __interface support by adding first class support for it, inste...Joao Matos1-0/+1
2012-07-25PR12057: Allow variadic template pack expansions to cross lambda boundaries.Richard Smith1-25/+64
2012-07-18PR13386: When matching up parameters between a function template declarationRichard Smith1-7/+17
2012-04-04For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this isRichard Smith1-0/+1
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie1-2/+2
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall1-9/+0
2012-03-06Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek1-0/+16
2012-03-01Fix the isReferenced bit on parameters in a couple of edge cases. PR12153.Eli Friedman1-0/+2
2012-02-22ArrayRef-icize the function arguments.Bill Wendling1-1/+1
2012-01-31Make the callback object to Sema::CorrectTypo mandatory.Kaelyn Uhrain1-1/+1
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie1-3/+0
2012-01-13Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo.Kaelyn Uhrain1-13/+24
2011-10-25Check for unexpanded parameter packs in the name that guards aDouglas Gregor1-13/+34
2011-10-14Provide half floating point support as a storage only type.Anton Korobeynikov1-0/+1
2011-10-06Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman1-1/+2
2011-09-22ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPa...David Blaikie1-9/+10
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner1-16/+16
2011-06-28Add support for C++ namespace-aware typo correction, e.g., correctingDouglas Gregor1-7/+9
2011-05-24Implement a new type node, UnaryTransformType, designed to represent aAlexis Hunt1-1/+1
2011-05-19Implement __underlying_type for libc++.Alexis Hunt1-1/+2