Age | Commit message (Expand) | Author |
2011-10-17 | Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', | Richard Smith |
2011-10-17 | When we end up having to parse the initializer of a C++ member early | Douglas Gregor |
2011-10-17 | Fixed merge-mistake where ActOnAccessSpecifier was called twice for every acc... | Erik Verbruggen |
2011-10-15 | Implement -Wc++98-compat warnings for the parser. | Richard Smith |
2011-10-15 | Refactor: remove redundant check for 'final' specifier when parsing class/str... | Richard Smith |
2011-10-15 | Rename an ExtWarn to ext_ for consistency. | Richard Smith |
2011-10-15 | Don't warn about use of 'final' in ill-formed C++98 code which didn't use | Richard Smith |
2011-10-14 | -Wc++98-compat: warn on C++11 attributes and alignas. | Richard Smith |
2011-10-13 | Allow for annotate attributes after access specifiers. When such | Erik Verbruggen |
2011-10-13 | Fix crash-on-invalid, improve error recovery, and test coverage for missing c... | David Blaikie |
2011-10-12 | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor |
2011-10-11 | Move some bool flags out of function parameter lists. | Kaelyn Uhrain |
2011-10-10 | Parse the initializer for a class member after handling its | Douglas Gregor |
2011-10-07 | Add braces around do-while body. The lack of them gives me the chills | Douglas Gregor |
2011-10-01 | Parse attributes written in an ObjC method parameter type as | John McCall |
2011-09-29 | Add support for alignment-specifiers in C1X and C++11, remove | Peter Collingbourne |
2011-09-29 | Add support for parsing an attribute-specifier-seq containing multiple | Peter Collingbourne |
2011-09-26 | Diagnose attempts to use 'using typename' with a non-identifier name, | Douglas Gregor |
2011-09-24 | Correctly parse braced member initializers (even in delayed parsing) and corr... | Sebastian Redl |
2011-09-23 | Fix up comment now that 'new' is no longer a virt-specifier, from Aaron Ballman | Douglas Gregor |
2011-09-17 | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet |
2011-09-09 | Specializations cannot be module-hidden. Diagnose attempts to do so. | Douglas Gregor |
2011-09-09 | __module_private__ is inherited by redeclarations of an entity, and | Douglas Gregor |
2011-09-09 | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor |
2011-09-08 | Thread Safety: Patch to implement delayed parsing of attributes within a | Caitlin Sadowski |
2011-09-04 | Add test case for defaulted copy and move structure validation. | Sebastian Redl |
2011-09-04 | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis |
2011-08-22 | objc - Simplify switing objc decl context by using | Fariborz Jahanian |
2011-08-22 | Restore patch I reversed in r138040. Known buildbot | Fariborz Jahanian |
2011-08-15 | Track in the AST whether a function is constexpr. | Richard Smith |
2011-08-04 | Parsing of C++0x lambda expressions, from John Freeman with help from | Douglas Gregor |
2011-07-30 | Turn off __has_feature(is_empty) and __has_feature(is_pod) if the | Douglas Gregor |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-14 | PR10359: Template declarations which define classes are not permitted to also... | Richard Smith |
2011-07-01 | Fix AST representations of alias-declarations which define tag types. Inside ... | Richard Smith |
2011-06-25 | When deciding how to parse "= something" as part of a member | Douglas Gregor |
2011-06-22 | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis |
2011-06-12 | Don't assert on initialized typedef declarations in classes: | Richard Smith |
2011-06-11 | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith |
2011-06-05 | Parse C++0x generalized initializers. | Sebastian Redl |
2011-05-26 | Silence sign compare warning. | Benjamin Kramer |
2011-05-26 | Add a fix-it and better error recovery for improperly nested namespaces. Thi... | Richard Trieu |
2011-05-25 | Add support for Microsoft __if_exists, __if_not_exists extension at class scope. | Francois Pichet |
2011-05-24 | Implement a new type node, UnaryTransformType, designed to represent a | Sean Hunt |
2011-05-19 | Implement __underlying_type for libc++. | Sean Hunt |
2011-05-12 | Properly parse the 'default' and 'delete' keywords. | Sean Hunt |
2011-05-11 | In Microsoft mode, allow pure specifier (=0) on inline functions declared at ... | Francois Pichet |
2011-05-06 | Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. | Sean Hunt |
2011-05-06 | Do defaulted constructors properly. | Sean Hunt |
2011-05-06 | Revert r130912 in order to approach defaulted functions from the other | Sean Hunt |