Age | Commit message (Expand) | Author |
2013-04-26 | Implement C++1y decltype(auto). | Richard Smith |
2013-04-12 | Parsing support for thread_local and _Thread_local. We give them the same | Richard Smith |
2013-04-03 | Give the default CorrectionCandidateCallback::ValidateCandidate some | Kaelyn Uhrain |
2013-03-20 | Teach statement / declaration disambiguation about C++11-style generalized in... | Richard Smith |
2013-02-07 | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei |
2013-01-20 | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei |
2013-01-02 | s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near... | Richard Smith |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-18 | Re-commit r170428 changes with Linux style file endings. | Guy Benyei |
2012-12-18 | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei |
2012-12-18 | Add OpenCL images as clang builtin types. | Guy Benyei |
2012-11-14 | Accept and pass arguments to __unknown_anytype in argument | John McCall |
2012-09-25 | Add the Microsoft __is_interface_class type trait. | John McCall |
2012-08-23 | When disambiguating an expression-statement from a declaraton-statement, if the | Richard Smith |
2012-08-18 | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith |
2012-07-30 | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith |
2012-07-23 | Do not warn about a function decl / direct init ambiguity if the function has... | Richard Smith |
2012-06-30 | Add support for the C11 _Alignof keyword. | Jordan Rose |
2012-06-23 | Support L__FUNCTION__ in microsoft mode, PR11789 | Nico Weber |
2012-05-16 | Recover better from a missing 'typename' in a function template definition. | Richard Smith |
2012-05-01 | A couple of very small tweaks suggested by Doug in reply to r155580 and r155163. | Kaelyn Uhrain |
2012-04-19 | In Parser::isCXXDeclarationSpecifier, consider a non-type identifier | Kaelyn Uhrain |
2012-04-11 | Support C++11 attributes at the start of a parameter-declaration. | Richard Smith |
2012-04-10 | Parsing of C++11 attributes: | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-09 | Fix bugs found by -Wconstant-conversion improvements currently under review. | David Blaikie |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith |
2012-03-27 | If we see '(...' where we're expecting an abstract-declarator, that doesn't | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-23 | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor |
2012-02-23 | Update parser's disambiguation to cope with braced function-style casts in | Richard Smith |
2012-01-25 | With a little more work in the tentative parse determining whether a statement | Nick Lewycky |
2012-01-24 | Support decltype as a simple-type-specifier. | David Blaikie |
2011-12-23 | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer |
2011-12-20 | Fix tentative parsing so it knows how to handle an ambiguous for-range-declar... | Eli Friedman |
2011-12-04 | Support decltype in nested-name-specifiers. | David Blaikie |
2011-12-03 | Implement support for the __is_final type trait, to determine whether | Douglas Gregor |
2011-10-14 | Provide half floating point support as a storage only type. | Anton Korobeynikov |
2011-10-06 | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman |
2011-09-29 | Add support for alignment-specifiers in C1X and C++11, remove | Peter Collingbourne |
2011-09-09 | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor |
2011-08-25 | Add support for Microsoft __ptr32 keyword. | Francois Pichet |
2011-08-18 | Add support for MSVC __unaligned attribute. Necessary to parse MSVC headers i... | Francois Pichet |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-06-22 | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis |
2011-05-19 | Implement __underlying_type for libc++. | Sean Hunt |
2011-05-13 | Implement the __is_trivially_copyable type trait | Sean Hunt |
2011-04-28 | Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin d... | Francois Pichet |
2011-04-24 | Add support for '__is_literal_type' spelling of the existing | Chandler Carruth |