summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus
Commit message (Expand)AuthorAgeFilesLines
...
* Removed unused member.Erik Verbruggen2010-06-041-1/+0
* Suppress false positives generated by some code-checking tools.Erik Verbruggen2010-06-041-3/+3
* Fixed uninitialized members.Erik Verbruggen2010-06-041-3/+13
* Return valid tokens for the Objc nodes.Roberto Raggi2010-06-031-21/+55
* Fixed ClassSpecifierAST::lastToken() to return a valid token.Roberto Raggi2010-06-011-3/+6
* Fixed possible crash when parsing template declarations at the end of a C++ f...Roberto Raggi2010-05-312-4/+11
* Fixed off-by-1-token for symbol end offsets.Erik Verbruggen2010-05-283-19/+19
* Check for possible 0x0 accesses.Roberto Raggi2010-05-281-0/+2
* Fixed __attribute__ parsing after struct declarations.Erik Verbruggen2010-05-271-3/+7
* Added support for the GCC "unavailable" attribute.Erik Verbruggen2010-05-264-1/+27
* Added support for the GCC "unavailable" attribute.Erik Verbruggen2010-05-265-1/+22
* Highlight user defined types.Roberto Raggi2010-05-251-6/+4
* Improved recovering from errors inside template declarations.Roberto Raggi2010-05-251-1/+12
* Disabled parsing of C++0x initializer-list.Roberto Raggi2010-05-211-2/+2
* Fixed ObjC selector name creation.Erik Verbruggen2010-05-201-1/+5
* Check for valid translation units.Roberto Raggi2010-05-101-8/+7
* Removed deprecated (and unsafe) methods.Roberto Raggi2010-05-103-72/+21
* Introduced Symbol::copy(otherSymbol) and removed some deprecated code.Roberto Raggi2010-05-102-2/+27
* Store the Control.Roberto Raggi2010-05-102-12/+8
* Propagate the Friend specifier.Roberto Raggi2010-05-101-0/+4
* More work on template instantiation.Roberto Raggi2010-05-101-0/+6
* Introduce Namespace aliases and store the TranslationUnit instead of the Cont...Roberto Raggi2010-05-0511-5/+103
* Fix left-overs from merging icheck code.Erik Verbruggen2010-04-233-9/+4
* CPlusPlus: Transfer cv qualifiers from Function to FullySpecifiedType.Christian Kamm2010-04-191-1/+6
* CPlusPlus: Let functions know about their cv-qualifiers again.Christian Kamm2010-04-191-0/+3
* Handle fully qualified types in the root namespace for template typenames.Erik Verbruggen2010-04-121-0/+3
* Fixed parsing of anonymous template parameters.Roberto Raggi2010-04-121-6/+15
* Postpone the parsing of function definitions.Roberto Raggi2010-03-305-23/+108
* CleanupRoberto Raggi2010-03-302-48/+88
* Clone the TemplateArguments before caching the result.Roberto Raggi2010-03-301-1/+8
* Fixed parsing ambiguity when parsing dependant template types.Roberto Raggi2010-03-292-1/+18
* Use the start of the template-argument as to key for template-arguments cache.Roberto Raggi2010-03-261-2/+4
* Parse C++ 0x argument packs.Roberto Raggi2010-03-2513-5/+219
* Recognize C++0x sizeof... expressions.Roberto Raggi2010-03-253-1/+17
* Accepts `...' when parsing declarator-ids in C++0x.Roberto Raggi2010-03-255-4/+26
* In C++ 0x auto is a type specifier.Roberto Raggi2010-03-241-1/+1
* Set and propagate the `auto' specifier.Roberto Raggi2010-03-245-1/+24
* Accepts trailing return types.Roberto Raggi2010-03-246-1/+20
* Require a T_EQUAL when parsing conditions.Roberto Raggi2010-03-241-1/+2
* Recognize C++0x decltype.Roberto Raggi2010-03-241-1/+18
* Recognize C++0x lambda expressions.Roberto Raggi2010-03-2418-37/+849
* Accept C++0x initializers.Roberto Raggi2010-03-231-0/+4
* Added __attribute__ visiting, and storing of the deprecated attr.Erik Verbruggen2010-03-2310-25/+73
* Added attribute parsing for elaborate-type-specifiers.Erik Verbruggen2010-03-231-0/+8
* Added attributes to the elaborate-type-specifier AST node.Erik Verbruggen2010-03-235-0/+13
* Added deprecated identifier.Erik Verbruggen2010-03-232-0/+7
* Recognize C++0x type-id-list.Roberto Raggi2010-03-231-0/+7
* Renamed Parser::isCxxOxEnabled().Roberto Raggi2010-03-232-2/+2
* Recognize C++0x template arguments.Roberto Raggi2010-03-231-2/+16
* Parse C++0x type-parameters.Roberto Raggi2010-03-235-0/+19