Age | Commit message (Expand) | Author |
2012-03-15 | Provide the specific target type in the -Wnull-conversion warning. | David Blaikie |
2012-03-15 | Remove a variable rendered unused by r152750. | Richard Smith |
2012-03-14 | Instantiating a class template should not instantiate the definition of any | Richard Smith |
2012-03-14 | When emitting a diagnostic about two-phase name lookup, don't do useless | Nick Lewycky |
2012-03-14 | Minor cleanup in attribute-related diagnostics, from Alexander Kornienko! | Douglas Gregor |
2012-03-14 | [Sema] Fix SemaDiagnosticBuilder to be inline. | Daniel Dunbar |
2012-03-13 | Spelling. | Daniel Dunbar |
2012-03-13 | Ensure that default arguments are handled correctly in sub scopes. For example: | James Molloy |
2012-03-13 | Implement [temp.param]p5: the top-level cv-qualifiers on a non-type template | Richard Smith |
2012-03-13 | PR11850 + duplicates: don't assume that a function parameter pack expansion is | Richard Smith |
2012-03-13 | PR11925: A function can't have a variably-modified return type. Not even in C++. | Richard Smith |
2012-03-13 | It never makes sense to do a lookup into a LinkageSpecDecl, so assert that we | Nick Lewycky |
2012-03-13 | Fix PR10447: lazily building name lookup tables for DeclContexts was broken. | Richard Smith |
2012-03-13 | [Sema] Prefer to use ObjCInterfaceDecl's protocol_begin()/protocol_end() iter... | Argyrios Kyrtzidis |
2012-03-13 | Fix crash at @implementation with a forward reference as base class. | Argyrios Kyrtzidis |
2012-03-13 | Alternate fix to PR12248: put Sema in charge of special-casing | John McCall |
2012-03-12 | C++11 [temp.deduct.call]p6 tweak: when given a set of overlaoded | Douglas Gregor |
2012-03-12 | [Sema] -Add an invalid objc category to the DeclContext so that it can be | Argyrios Kyrtzidis |
2012-03-12 | ObjCBoolLiterals (__objc_yes/__objc_no) behave like C++ booleans (true/false)... | Jordy Rose |
2012-03-12 | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-11 | When template argument deduction is ignoring qualifiers, perform deep | Douglas Gregor |
2012-03-10 | When determining whether an identifier followed by a '<' in a member | Douglas Gregor |
2012-03-10 | Fix crash & accepts-invalid for array of arrays of user defined type. | David Blaikie |
2012-03-10 | PR12225: The requirement that literal operators be namespace-scope functions | Richard Smith |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall |
2012-03-10 | Slightly tweak this condition. "isTransparentContext()" was checking whether an | Nick Lewycky |
2012-03-10 | Could not find this in C99. Perhaps this rule comes from a DR, but in any case | Nick Lewycky |
2012-03-10 | Only make a call to a copy constructor elidable if in fact we are | Douglas Gregor |
2012-03-10 | [Sema] A tag decl that is marked as invalid and is used in a decl-spec, | Argyrios Kyrtzidis |
2012-03-10 | Qualifiers on a canonical array type go on the outermost type, not the | Douglas Gregor |
2012-03-09 | [Sema] Fix a diag change to include a range that appeared intended, but never | Daniel Dunbar |
2012-03-09 | Improve our semantic error recovery. | Argyrios Kyrtzidis |
2012-03-09 | [Sema] Remove dead getSourceRange() call, caught by Clang after marking | Daniel Dunbar |
2012-03-09 | lldb support: under debugger support flag, when sending message | Fariborz Jahanian |
2012-03-09 | [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). | Daniel Dunbar |
2012-03-09 | -Wformat-non-iso: warn about positional arguments (pr12017) | Hans Wennborg |
2012-03-09 | Literal operators can't have default arguments. | Richard Smith |
2012-03-09 | Support for raw and template forms of numeric user-defined literals, | Richard Smith |
2012-03-09 | Perform l2r conversions on delete operands before doing | John McCall |
2012-03-09 | [AST] Reduce Decl::getASTContext() calls. | Daniel Dunbar |
2012-03-08 | Don't crash when a statement in a block is ill-formed but | John McCall |
2012-03-08 | Turn explicit construction of temporaries using initializer list syntax into ... | Sebastian Redl |
2012-03-08 | Replace MarkVarRequired with a more generic | Rafael Espindola |
2012-03-08 | Add support for cooked forms of user-defined-integer-literal and | Richard Smith |
2012-03-08 | Implement C++11 [lex.ext]p10 for string and character literals: a ud-suffix not | Richard Smith |
2012-03-08 | Sema: Don't emit a gajillion calls to sanity() -- an empty function -- in NDEBUG | Daniel Dunbar |
2012-03-08 | User-defined literal support for character literals. | Richard Smith |
2012-03-08 | Fix -Wuninitialized to catch the case of a class being initialized with a call | Richard Trieu |
2012-03-08 | improve on diagnostic and provide a fixit hint when | Fariborz Jahanian |