Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Instantiate function declarations in instantiated functions. | Serge Pavlov | 2015-08-23 | 1 | -5/+8 |
| | | | | | | | | | | | | | | | | | If a function declaration is found inside a template function as in: template<class T> void f() { void g(int x = T::v) except(T::w); } it must be instantiated along with the enclosing template function, including default arguments and exception specification. Together with the patch committed in r240974 this implements DR1484. Differential Revision: http://reviews.llvm.org/D11194 llvm-svn: 245810 | ||||
* | DR974: Lambdas can have default arguments. | Richard Smith | 2013-04-17 | 1 | -1/+1 |
| | | | | llvm-svn: 179688 | ||||
* | Implement C++ core issue 974, which permits default arguments for | Douglas Gregor | 2012-02-14 | 1 | -0/+50 |
lambda expressions. Because these issue was pulled back from Ready status at the Kona meeting, we still emit an ExtWarn when using default arguments for lambda expressions. llvm-svn: 150519 |