| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add a missing case for default constructor deletion. | Alexis Hunt | 2011-05-20 | 1 | -0/+5 |
| * | Downgrade the error about re-opening an inline namespace as non-inline | Douglas Gregor | 2011-05-20 | 1 | -3/+11 |
| * | Reapply r121528, fixing PR9941 by delaying the exception specification check ... | Sebastian Redl | 2011-05-19 | 1 | -6/+35 |
| * | After consultation with doug, revert r131515. | Alexis Hunt | 2011-05-18 | 1 | -9/+1 |
| * | Revert r121528 as it breaks a simple testcase, which leads to, among | Alexis Hunt | 2011-05-18 | 1 | -35/+6 |
| * | Implement implicit exception specifications of destructors. | Sebastian Redl | 2011-05-18 | 1 | -6/+35 |
| * | Implement an additional fix for infinite recursion of deleted special | Alexis Hunt | 2011-05-18 | 1 | -58/+49 |
| * | Force declaration of implicit members in C++0x mode. | Alexis Hunt | 2011-05-18 | 1 | -1/+9 |
| * | Fix some minor bugs and add a lot more test cases for defaulted | Alexis Hunt | 2011-05-17 | 1 | -8/+12 |
| * | Implement some tests for defaulted constructors. To do this I had to | Alexis Hunt | 2011-05-17 | 1 | -17/+19 |
| * | What I hope to be an implementation of defaulted copy assignment | Alexis Hunt | 2011-05-14 | 1 | -59/+174 |
| * | More progress towards defaulted copy assignment | Alexis Hunt | 2011-05-14 | 1 | -1/+192 |
| * | Start implementing defaulted copy assignment | Alexis Hunt | 2011-05-14 | 1 | -16/+24 |
| * | Fix copy constructor deletion detection with array types. | Alexis Hunt | 2011-05-13 | 1 | -3/+10 |
| * | Defaulting copy constructors now works reasonably well. | Alexis Hunt | 2011-05-13 | 1 | -36/+326 |
| * | Implement defaulting of destructors. | Alexis Hunt | 2011-05-12 | 1 | -3/+1 |
| * | Hrm | Alexis Hunt | 2011-05-12 | 1 | -28/+199 |
| * | Properly parse the 'default' and 'delete' keywords. | Alexis Hunt | 2011-05-12 | 1 | -9/+35 |
| * | Make it so that we actually generate definitions for explicitly | Alexis Hunt | 2011-05-12 | 1 | -1/+2 |
| * | Implement deletion of explicitly defaulted default constructors. | Alexis Hunt | 2011-05-12 | 1 | -0/+8 |
| * | Commit some missing changes to the previous patch. | Alexis Hunt | 2011-05-11 | 1 | -1/+1 |
| * | Implement implicit deletion of default constructors. | Alexis Hunt | 2011-05-11 | 1 | -4/+182 |
| * | Re-do R131114 without breaking code. | Alexis Hunt | 2011-05-10 | 1 | -1/+1 |
| * | Reimplement Sema::MatchTemplateParametersToScopeSpecifier() based on | Douglas Gregor | 2011-05-10 | 1 | -1/+1 |
| * | Revert 131114. This fixes PR9884. | Rafael Espindola | 2011-05-10 | 1 | -1/+1 |
| * | Further implement defaulting constructors. | Alexis Hunt | 2011-05-10 | 1 | -122/+140 |
| * | The last of the trivial constructor changes, make CXXSpecialMember | Alexis Hunt | 2011-05-10 | 1 | -1/+1 |
| * | Clean up trivial default constructors now. | Alexis Hunt | 2011-05-09 | 1 | -3/+3 |
| * | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -1/+1 |
| * | When checking for a prior declaration of the name of a namespace, skip | Douglas Gregor | 2011-05-06 | 1 | -4/+15 |
| * | Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. | Alexis Hunt | 2011-05-06 | 1 | -4/+4 |
| * | Modify some deleted function methods to better reflect reality: | Alexis Hunt | 2011-05-06 | 1 | -2/+2 |
| * | Do defaulted constructors properly. | Alexis Hunt | 2011-05-06 | 1 | -2/+5 |
| * | Revert r130912 in order to approach defaulted functions from the other | Alexis Hunt | 2011-05-06 | 1 | -10/+4 |
| * | Implement support for C++0x alias templates. | Richard Smith | 2011-05-05 | 1 | -4/+96 |
| * | Implement some framework for defaulted constructors. | Alexis Hunt | 2011-05-05 | 1 | -4/+10 |
| * | Change cycle detection to be based off of a warning flag. | Alexis Hunt | 2011-05-05 | 1 | -3/+2 |
| * | there i fixed it | Alexis Hunt | 2011-05-04 | 1 | -41/+74 |
| * | Implement a better version of delegating constructor cycle detection. | Alexis Hunt | 2011-05-04 | 1 | -20/+57 |
| * | Ensure that delegating constructor loop detection uses canonical | Alexis Hunt | 2011-05-04 | 1 | -2/+2 |
| * | Ensure that destructors are properly inovked when an exception leaves | Alexis Hunt | 2011-05-03 | 1 | -0/+5 |
| * | Move the AST modifications to after the cycle detection in | Alexis Hunt | 2011-05-03 | 1 | -6/+12 |
| * | Remove unused variable, but keep function call with side-effect. | Nick Lewycky | 2011-05-02 | 1 | -1/+1 |
| * | Fully implement delegating constructors! | Alexis Hunt | 2011-05-01 | 1 | -0/+28 |
| * | Synthesizing the definition of an implicit member is an AST modification, so ... | Sebastian Redl | 2011-04-24 | 1 | -0/+17 |
| * | At the end of the translation unit, defining a vtable can introduce | Douglas Gregor | 2011-04-22 | 1 | -1/+3 |
| * | Add -fdelayed-template-parsing option. Using this option all templated functi... | Francois Pichet | 2011-04-22 | 1 | -0/+19 |
| * | Don't enter a qualified scope for an invalid decl. | Argyrios Kyrtzidis | 2011-04-22 | 1 | -2/+2 |
| * | For consistency, change suffix from war_ to warn_ for some Microsoft warnings... | Francois Pichet | 2011-04-22 | 1 | -1/+1 |
| * | Support for C++11 (non-template) alias declarations. | Richard Smith | 2011-04-15 | 1 | -4/+59 |