Age | Commit message (Expand) | Author |
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 |
2011-04-23 | Implement basic __is_trivial type-trait support, enough to close PR9472. | Chandler Carruth |
2011-04-23 | Sort the type traits in a few places where they weren't previously | Chandler Carruth |
2011-04-15 | C1X: implement static asserts | Peter Collingbourne |
2011-03-24 | Insomniac refactoring: change how the parser allocates attributes so that | John McCall |
2011-03-12 | Propagate the new exception information to FunctionProtoType. | Sebastian Redl |
2011-03-02 | Push nested-name-specifier source-location information into dependent | Douglas Gregor |
2011-01-27 | Implement the Microsoft __is_convertible_to type trait, modeling the | Douglas Gregor |
2011-01-26 | Rvalue references for *this: tentative parsing and template argument deduction. | Douglas Gregor |
2011-01-20 | Add some tests for reference-collapsing and referencing binding | Douglas Gregor |
2011-01-18 | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin |
2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall |
2010-12-23 | Implement parsing of function parameter packs and non-type template | Douglas Gregor |
2010-12-08 | Handle parameter attributes when tentative parsing for function/variable disa... | Argyrios Kyrtzidis |
2010-12-01 | After parsing a ':' in an enum-specifier within class context, | Douglas Gregor |
2010-10-21 | Teach the C++ simple-type-specifier parser and tentative parses about | Douglas Gregor |
2010-10-11 | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet |
2010-09-28 | enhance tentative parsing to handle ms extensions, patch by Martin Vejnar! | Chris Lattner |
2010-09-16 | Implement automatic bracket insertion for Objective-C class message | Douglas Gregor |
2010-09-03 | Add symantic support for the Pascal calling convention via | Dawn Perchik |
2010-08-29 | ObjClang++: Allow declaration of block variable in a collection | Fariborz Jahanian |