| Commit message (Expand) | Author | Age | Files | Lines |
| * | Refactor all diagnosing of TypoCorrections through a common function, in | Richard Smith | 2013-08-17 | 1 | -38/+23 |
| * | Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive ... | Robert Wilhelm | 2013-08-10 | 1 | -3/+3 |
| * | Implement [class.friend]p11's special name lookup rules for friend declarations | Richard Smith | 2013-08-09 | 1 | -28/+51 |
| * | Eliminate CXXConstructorDecl::IsImplicitlyDefined. | Jordan Rose | 2013-08-07 | 1 | -3/+0 |
| * | Started implementing variable templates. Top level declarations should be ful... | Larisse Voufo | 2013-08-06 | 1 | -2/+4 |
| * | Sema: Minor const fixups and control flow tidying. | Benjamin Kramer | 2013-07-24 | 1 | -93/+67 |
| * | C++1y literal suffix support: | Richard Smith | 2013-07-23 | 1 | -1/+3 |
| * | Update comment to refer to core issue number. | Richard Smith | 2013-07-22 | 1 | -4/+2 |
| * | Improve clarity/consistency of a few UsingDecl methods and related helpers. | Enea Zaffanella | 2013-07-22 | 1 | -19/+21 |
| * | Remove superfluous cast. | Robert Wilhelm | 2013-07-22 | 1 | -2/+1 |
| * | Implement DR257 / fix PR16659: | Richard Smith | 2013-07-22 | 1 | -7/+36 |
| * | Convert Sema::MatchTemplateParametersToScopeSpecifier to ArrayRef. | Robert Wilhelm | 2013-07-21 | 1 | -7/+4 |
| * | Clean up diagnostics for inheriting constructors. | Eli Friedman | 2013-07-18 | 1 | -3/+1 |
| * | SemaDeclCXX.cpp: Dissolve a ligature "fi" in comment. | NAKAMURA Takumi | 2013-07-17 | 1 | -1/+1 |
| * | Fixed source range of C++03 access declarations. | Enea Zaffanella | 2013-07-17 | 1 | -6/+1 |
| * | Fix crash on zero-argument assignment operator. | Eli Friedman | 2013-07-11 | 1 | -1/+2 |
| * | Offer typo suggestions for 'using' declarations. | Kaelyn Uhrain | 2013-07-10 | 1 | -4/+54 |
| * | Allow typo correction to try removing nested name specifiers. | Kaelyn Uhrain | 2013-07-02 | 1 | -5/+8 |
| * | Fix error recovery with in-class initializer. | Eli Friedman | 2013-06-28 | 1 | -1/+6 |
| * | Fix line endings. | Eli Friedman | 2013-06-28 | 1 | -20/+20 |
| * | This patch fixes PR16395, when HandleMSProperty returns null due to a declara... | Aaron Ballman | 2013-06-26 | 1 | -19/+20 |
| * | Implement DR136 | David Majnemer | 2013-06-25 | 1 | -0/+34 |
| * | Revert r184401 which reverted r183462. | David Majnemer | 2013-06-22 | 1 | -25/+34 |
| * | Clean up warning and add a test. | Eli Friedman | 2013-06-20 | 1 | -2/+2 |
| * | Temporarily revert r183462: "Implement DR7" | Chandler Carruth | 2013-06-20 | 1 | -12/+5 |
| * | C++11: If a class has a user-declared copy operation or destructor, the | Richard Smith | 2013-06-13 | 1 | -1/+67 |
| * | In C++11, promote access declaration diagnostic from warning to error. There | Richard Smith | 2013-06-13 | 1 | -2/+4 |
| * | PR12086, PR15117 | Richard Smith | 2013-06-12 | 1 | -9/+0 |
| * | Move detection of reference members binding to temporaries from building of | Richard Smith | 2013-06-12 | 1 | -9/+1 |
| * | Reapply r183721, reverted in r183776, with a fix for a bug in the former (we | Richard Smith | 2013-06-12 | 1 | -1/+2 |
| * | When we're synthesizing copy/move-assignment, we can't form a reference to an | Eli Friedman | 2013-06-07 | 1 | -1/+11 |
| * | Implement DR7 | David Majnemer | 2013-06-06 | 1 | -5/+12 |
| * | [ms-cxxabi] Look up operator delete() at every virtual dtor declaration. | Peter Collingbourne | 2013-05-20 | 1 | -1/+1 |
| * | Use only explicit bool conversion operator | David Blaikie | 2013-05-15 | 1 | -1/+1 |
| * | Cleanup handling of UniqueExternalLinkage. | Rafael Espindola | 2013-05-13 | 1 | -1/+1 |
| * | Add support for __wchar_t in -fms-extensions mode. | Hans Wennborg | 2013-05-10 | 1 | -2/+2 |
| * | ArrayRef'ize Sema::ActOnMemInitializer | Dmitri Gribenko | 2013-05-09 | 1 | -3/+2 |
| * | ArrayRef'ize some SemaOverload methods | Dmitri Gribenko | 2013-05-09 | 1 | -3/+5 |
| * | C++1y: an assignment operator is implicitly 'constexpr' if it would only call... | Richard Smith | 2013-05-07 | 1 | -22/+46 |
| * | Replace 'MultiExprArg()' with 'None' | Dmitri Gribenko | 2013-05-05 | 1 | -10/+10 |
| * | Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr... | Dmitri Gribenko | 2013-05-05 | 1 | -13/+6 |
| * | ArrayRef'ize InitializationSequence constructor and InitializationSequence::D... | Dmitri Gribenko | 2013-05-03 | 1 | -48/+28 |
| * | Move parsing of identifiers in MS-style inline assembly into | John McCall | 2013-05-03 | 1 | -2/+1 |
| * | C++1y: support simple variable assignments in constexpr functions. | Richard Smith | 2013-04-26 | 1 | -5/+6 |
| * | Add r180263 back, but fix hasBraces() to be correct during parsing. | Rafael Espindola | 2013-04-26 | 1 | -1/+2 |
| * | Put friend decls in the correct context. | Rafael Espindola | 2013-04-25 | 1 | -15/+25 |
| * | C++1y constexpr extensions, round 1: Allow most forms of declaration and | Richard Smith | 2013-04-22 | 1 | -48/+200 |
| * | C++1y: Allow aggregates to have default initializers. | Richard Smith | 2013-04-20 | 1 | -3/+5 |
| * | PR15755: don't drop parameter packs when dropping parameters with default | Richard Smith | 2013-04-17 | 1 | -7/+10 |
| * | Sema: Remove unused variable. | Benjamin Kramer | 2013-04-17 | 1 | -4/+0 |