Age | Commit message (Expand) | Author |
2011-05-16 | Implement the new C++0x rules for non-trivial things in unions so that | Sean Hunt |
2011-05-14 | Revert 131347. It asserts if the specialization in within a class template: | Francois Pichet |
2011-05-14 | In Microsoft mode, allow template function explicit specialization at class s... | Francois Pichet |
2011-05-12 | Properly parse the 'default' and 'delete' keywords. | Sean Hunt |
2011-05-12 | Implement deletion of explicitly defaulted default constructors. | Sean Hunt |
2011-05-12 | Fix typo in comment. | Nick Lewycky |
2011-05-11 | Commit some missing changes to the previous patch. | Sean Hunt |
2011-05-11 | Implement implicit deletion of default constructors. | Sean Hunt |
2011-05-11 | In Microsoft mode, allow pure specifier (=0) on inline functions declared at ... | Francois Pichet |
2011-05-10 | Re-do R131114 without breaking code. | Sean Hunt |
2011-05-10 | Reimplement Sema::MatchTemplateParametersToScopeSpecifier() based on | Douglas Gregor |
2011-05-10 | Revert 131114. This fixes PR9884. | Rafael Espindola |
2011-05-10 | Further implement defaulting constructors. | Sean Hunt |
2011-05-10 | The last of the trivial constructor changes, make CXXSpecialMember | Sean Hunt |
2011-05-09 | Ignore const/volatile/restrict qualifiers on anonymous structs and | Douglas Gregor |
2011-05-09 | Extend the tag-ambiguity hack I committed in r130810 for tag | Douglas Gregor |
2011-05-09 | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Sean Hunt |
2011-05-06 | Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. | Sean Hunt |
2011-05-06 | Modify some deleted function methods to better reflect reality: | 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 |
2011-05-05 | Implement support for C++0x alias templates. | Richard Smith |
2011-05-05 | Implement some framework for defaulted constructors. | Sean Hunt |
2011-05-04 | When tag lookup finds something ambiguous, and we're defining a new | Douglas Gregor |
2011-05-03 | When parsing a template friend declaration we dropped the template | Chandler Carruth |
2011-05-01 | Store a parameter index and function prototype depth in every | John McCall |
2011-04-27 | Extend Sema::ClassifyName() to support C++, ironing out a few issues | Douglas Gregor |
2011-04-27 | Improve diagnostics for typo correction via Sema::ClassifyName(), by | Douglas Gregor |
2011-04-26 | Add ms_struct attribute on record typee | Fariborz Jahanian |
2011-04-25 | 'extern' variables in functions don't shadow externs in global scope. Fixes r... | Argyrios Kyrtzidis |
2011-04-25 | When Sema::ClassifyName() finds an invalid ivar reference, return an | Douglas Gregor |
2011-04-24 | Implement a new identifier-classification scheme where Sema | Douglas Gregor |
2011-04-22 | Correctly emit a diagnostic for multiple templated function definitions in -f... | Francois Pichet |
2011-04-22 | Add -fdelayed-template-parsing option. Using this option all templated functi... | Francois Pichet |
2011-04-22 | Do not return true from MergeFunctionDecl for a warn_static_non_static warnin... | Francois Pichet |
2011-04-22 | I concur with DPG here. This does indeed apply in 0x mode. Added test | Chandler Carruth |
2011-04-22 | For consistency, change suffix from war_ to warn_ for some Microsoft warnings... | Francois Pichet |
2011-04-22 | Downgrade error "static declaration of 'foo' follows non-static declaration" ... | Francois Pichet |
2011-04-19 | ADT/Triple: Switch to using .isOSDarwin() predicate. | Daniel Dunbar |
2011-04-15 | Support for C++11 (non-template) alias declarations. | Richard Smith |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-04-13 | Still not used to put the * next to the variable name. | Francois Pichet |
2011-04-13 | In Microsoft mode, within class scope, if a CXXScopeSpec's type is equal to t... | Francois Pichet |
2011-04-09 | PR8369: make __attribute((regparm(0))) work correctly. Original patch by | Eli Friedman |
2011-04-08 | Use ExprResult& instead of Expr *& in Sema | John Wiegley |
2011-04-04 | Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numero... | Ted Kremenek |
2011-03-29 | Accept __declspec(dllimport) for function defined at class scope in Microsoft... | Francois Pichet |
2011-03-27 | Diagnose uninitialized uses of a variable within its own initializer. | Chandler Carruth |
2011-03-26 | Don't warn about the 'extern' in 'extern "C"' on a tag decl. This is | John McCall |
2011-03-25 | Get rid of handling of the 'explicit' keyword from class-head. We still parse... | Anders Carlsson |