- ef7fe1f Simplify a bit. by Rafael Espindola · 12 years ago
- 25284cc Use pop_back_val() instead of both back() and pop_back(). by Robert Wilhelm · 12 years ago
- 2fdbea2 Revert "Implement a rudimentary form of generic lambdas." by Manuel Klimek · 12 years ago
- fd5277c Implement a rudimentary form of generic lambdas. by Faisal Vali · 12 years ago
- 5ba37d5 Split isFromMainFile into two functions. by Eli Friedman · 12 years ago
- 27b2c9a3 const'ify Sema::ActOnCompoundStmt by by Robert Wilhelm · 12 years ago
- f9b1510 Refactor all diagnosing of TypoCorrections through a common function, in by Richard Smith · 12 years ago
- b869a8f Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive in include/clang/Basic/LLVM.h. by Robert Wilhelm · 12 years ago
- 114394f Implement [class.friend]p11's special name lookup rules for friend declarations by Richard Smith · 12 years ago
- 54533f7 Eliminate CXXConstructorDecl::IsImplicitlyDefined. by Jordan Rose · 12 years ago
- 39a1e50 Started implementing variable templates. Top level declarations should be fully supported, up to some limitations documented as FIXMEs or TODO. Static data member templates work very partially. Static data member templates of class templates need particular attention... by Larisse Voufo · 12 years ago
- 8bf4435 Sema: Minor const fixups and control flow tidying. by Benjamin Kramer · 12 years ago
- f4198b7 C++1y literal suffix support: by Richard Smith · 12 years ago
- d162703 Update comment to refer to core issue number. by Richard Smith · 12 years ago
- e05a3cf Improve clarity/consistency of a few UsingDecl methods and related helpers. by Enea Zaffanella · 12 years ago
- e3cea80 Remove superfluous cast. by Robert Wilhelm · 12 years ago
- bc46e43 Implement DR257 / fix PR16659: by Richard Smith · 12 years ago
- f2d2e8f Convert Sema::MatchTemplateParametersToScopeSpecifier to ArrayRef. by Robert Wilhelm · 12 years ago
- ebea0f2 Clean up diagnostics for inheriting constructors. by Eli Friedman · 12 years ago
- 3e7db84 SemaDeclCXX.cpp: Dissolve a ligature "fi" in comment. by NAKAMURA Takumi · 12 years ago
- c70b251 Fixed source range of C++03 access declarations. by Enea Zaffanella · 12 years ago
- 84c0143e Fix crash on zero-argument assignment operator. by Eli Friedman · 12 years ago
- 8ec9f5f Offer typo suggestions for 'using' declarations. by Kaelyn Uhrain · 12 years ago
- 10413a4 Allow typo correction to try removing nested name specifiers. by Kaelyn Uhrain · 12 years ago
- b13e64e Fix error recovery with in-class initializer. by Eli Friedman · 12 years ago
- c37dbf7 Fix line endings. by Eli Friedman · 12 years ago
- 2a6febc This patch fixes PR16395, when HandleMSProperty returns null due to a declaration with no name. by Aaron Ballman · 12 years ago
- 502b0ed Implement DR136 by David Majnemer · 12 years ago
- 626032f Revert r184401 which reverted r183462. by David Majnemer · 12 years ago
- 600bc24 Clean up warning and add a test. by Eli Friedman · 12 years ago
- 8a76fcf Temporarily revert r183462: "Implement DR7" by Chandler Carruth · 12 years ago
- d577fbb C++11: If a class has a user-declared copy operation or destructor, the by Richard Smith · 12 years ago
- f026b60 In C++11, promote access declaration diagnostic from warning to error. There by Richard Smith · 12 years ago
- cc1b96d PR12086, PR15117 by Richard Smith · 12 years ago
- e3b28bc Move detection of reference members binding to temporaries from building of by Richard Smith · 12 years ago
- 736a947 Reapply r183721, reverted in r183776, with a fix for a bug in the former (we by Richard Smith · 12 years ago
- c9817fd When we're synthesizing copy/move-assignment, we can't form a reference to an by Eli Friedman · 12 years ago
- 686d33f Implement DR7 by David Majnemer · 12 years ago
- b289fe6 [ms-cxxabi] Look up operator delete() at every virtual dtor declaration. by Peter Collingbourne · 13 years ago
- 7d17010 Use only explicit bool conversion operator by David Blaikie · 13 years ago
- 3ae0005 Cleanup handling of UniqueExternalLinkage. by Rafael Espindola · 13 years ago
- 0d81e01 Add support for __wchar_t in -fms-extensions mode. by Hans Wennborg · 13 years ago
- 139474d ArrayRef'ize Sema::ActOnMemInitializer by Dmitri Gribenko · 13 years ago
- 9c785c2 ArrayRef'ize some SemaOverload methods by Dmitri Gribenko · 13 years ago
- 99005e6 C++1y: an assignment operator is implicitly 'constexpr' if it would only call 'constexpr' assignment operators for a literal class type. by Richard Smith · 13 years ago
- 78852e9 Replace 'MultiExprArg()' with 'None' by Dmitri Gribenko · 13 years ago
- 44ebbd5 Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None by Dmitri Gribenko · 13 years ago
- 8f8930f ArrayRef'ize InitializationSequence constructor and InitializationSequence::Diagnose() by Dmitri Gribenko · 13 years ago
- f413f5e Move parsing of identifiers in MS-style inline assembly into by John McCall · 13 years ago
- 3da88fa C++1y: support simple variable assignments in constexpr functions. by Richard Smith · 13 years ago
- 327be3c Add r180263 back, but fix hasBraces() to be correct during parsing. by Rafael Espindola · 13 years ago
- 3626b7e Put friend decls in the correct context. by Rafael Espindola · 13 years ago
- d9f663b C++1y constexpr extensions, round 1: Allow most forms of declaration and by Richard Smith · 13 years ago
- 852c9db C++1y: Allow aggregates to have default initializers. by Richard Smith · 13 years ago
- 3c626ed PR15755: don't drop parameter packs when dropping parameters with default by Richard Smith · 13 years ago
- 892cb48 Sema: Remove unused variable. by Benjamin Kramer · 13 years ago
- 3cb4c63 DR974: Lambdas can have default arguments. by Richard Smith · 13 years ago
- 5e77d76 Basic support for Microsoft property declarations and references thereto. by John McCall · 13 years ago
- b4a9e86 Parsing support for thread_local and _Thread_local. We give them the same by Richard Smith · 13 years ago
- b7151b9 Add support for computing the exception specification for an inheriting by Richard Smith · 13 years ago
- 185be18 C++11 inheriting constructors: support for inheriting constructor templates. by Richard Smith · 13 years ago
- 7353c86 When checking for illegal expressions in a default-argument by John McCall · 13 years ago
- 05c4d02 When -Woverloaded-virtual is triggered, call HandleFunctionTypeMismatch to add by Richard Trieu · 13 years ago
- 6ae7e50 Add 178663 back. by Rafael Espindola · 13 years ago
- 985a3ab Revert 178663. by Rafael Espindola · 13 years ago
- adea16b Don't compute a patched/semantic storage class. by Rafael Espindola · 13 years ago
- b4d2a15 If a defaulted special member is implicitly deleted, check whether it's by Richard Smith · 13 years ago
- 3901dfe PR15597: Fix a confusion between the implicit exception specification and the by Richard Smith · 13 years ago
- 45bb483 <rdar://problem/13267210> Ensure that Sema::CompareReferenceRelationship returns consistent results with invalid types. by Douglas Gregor · 13 years ago
- ea306a1 <rdar://problem/13185264> Don't crash when attempting to redundantly initialize a member of an anonymous union. by Douglas Gregor · 13 years ago
- eaef89b Fix a crash-on-valid where a block capture copy expression was by John McCall · 13 years ago
- 80de23e Remove some dead code. by John McCall · 13 years ago
- c2bc61b Bring inheriting constructor implementation up-to-date with current defect by Richard Smith · 13 years ago
- 5c38272 ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 13 years ago
- 45b620a Add a hasExternalLinkage helper. No functionality change. by Rafael Espindola · 13 years ago
- 5afcdf3f PR15390: If a function returns a pointer to a function, that function type by Richard Smith · 13 years ago
- d03d99d Silence a number of static analyzer warnings with assertions and such. by Jordan Rose · 13 years ago
- 8432435 [Sema] Semantic analysis for empty-declaration and attribute-declaration. by Michael Han · 13 years ago
- 54ecd98 Process and handle attributes on conditions and for loop variables. Process and by Richard Smith · 13 years ago
- 4c96e99 PR15300: Support C++11 attributes on base-specifiers. We don't support any such by Richard Smith · 13 years ago
- 6adc78e Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 13 years ago
- 3e35026 Make helper functions static. by Benjamin Kramer · 13 years ago
- 36722d2 Don't check whether a friend declaration is correctly formed when instantiating, by Nick Lewycky · 13 years ago
- 6b21696 Add some missing diagnostics for C++11 narrowing conversions. by Richard Smith · 13 years ago
- bc0e5c0 Don't do delayed exception-specification checking on an invalid by Douglas Gregor · 13 years ago
- eb22c87 Added outer template parameter lists to friend type AST nodes. by Enea Zaffanella · 13 years ago
- efc270d Fix unused variable warnings in -asserts build by Matt Beaumont-Gay · 13 years ago
- 35506f8 Provide a fixit for constexpr non-static data members. by David Blaikie · 13 years ago
- 6bd2a89 The standard ARM C++ ABI dictates that inline functions are by John McCall · 13 years ago
- 68f71a3 Remove windows line endings. by David Blaikie · 13 years ago
- b61b815 Improve -Wreorder to handle cases of anonymous class member ordering by David Blaikie · 13 years ago
- 3fc2f91 ArrayRef-ize some ctor initializer related APIs by David Blaikie · 13 years ago
- 3ae79d9 Remove some unnecessary casts by David Blaikie · 13 years ago
- c406cb7 Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on by Richard Smith · 13 years ago
- f96361e Fixes crash when illegal function definitions are deleted or defaulted. Fixes PR14577. by Aaron Ballman · 13 years ago
- 945f8d3 Refactor to call ActOnFinishFullExpr on every full expression. Teach by Richard Smith · 13 years ago
- 765396f ArrayRef'ize Sema APIs related to format string checking by Dmitri Gribenko · 13 years ago
- f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
- 0a67e2f Tighten types a bit. No functionality change. by Rafael Espindola · 13 years ago
- 2bf7fdb s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 13 years ago