summaryrefslogtreecommitdiffstats
path: root/test/CXX/dcl.dcl
Commit message (Expand)AuthorAgeFilesLines
* Disambiguation of '[[':Richard Smith2012-04-101-0/+13
* Temporary workaround for bug#12457: turn the 'constexpr function never producesRichard Smith2012-04-051-0/+1
* Fix PR10447: lazily building name lookup tables for DeclContexts was broken.Richard Smith2012-03-131-6/+4
* Fix parsing of trailing-return-type. Types are syntactically prohibited fromRichard Smith2012-03-122-2/+2
* Fix parsing of type-specifier-seq's. Types are syntactically allowed to beRichard Smith2012-03-122-11/+11
* static_assert: Allow any string-literal as the message, not just a characterRichard Smith2012-03-051-0/+2
* Accept braced-init-lists in conditions, and, in passing, dramatically improveRichard Smith2012-02-221-3/+3
* Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is aRichard Smith2012-02-221-0/+108
* Fix a constexpr FIXME: When implicitly instantiating the primary template for anRichard Smith2012-02-201-9/+7
* constexpr tidyups:Richard Smith2012-02-161-5/+10
* Update constexpr implementation to match CWG's chosen approach for core issuesRichard Smith2012-02-135-54/+41
* Implement the standard decltype() semantics described in C++11Douglas Gregor2012-02-121-0/+6
* PR11684, core issue 1417:Richard Smith2012-02-102-3/+2
* DR1359: A constexpr constructor does not need to initialize an empty struct orRichard Smith2012-02-091-0/+10
* Add more testing for r149776.Richard Smith2012-02-081-0/+19
* constexpr: Implement DR1358: An instantiation of a constexpr function whichRichard Smith2012-02-051-0/+25
* constexpr:Richard Smith2012-02-021-0/+6
* constexpr: Unlike other incomplete types, 'void' cannot possibly be completed asRichard Smith2012-02-011-0/+1
* constexpr: Implement the [dcl.constexpr]p5 check for whether a constexprRichard Smith2012-01-273-17/+89
* Minor fixups for auto deduction of initializer lists.Sebastian Redl2012-01-231-3/+3
* PR11754: Reject non-static constexpr member functions in classes with virtualRichard Smith2012-01-131-0/+4
* constexpr is allowed on static member functions of non-literal classes. Per ...Eli Friedman2012-01-131-0/+6
* Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its:Richard Smith2012-01-121-8/+8
* Update C++11 scoped enumeration support to match the final proposal:Richard Smith2012-01-101-3/+4
* David Blaikie and Chandler would like us to diagnoseRichard Smith2012-01-061-6/+6
* Tweak to r147599 for PR10828: Move the check from the parser into sema, and useRichard Smith2012-01-061-6/+6
* PR10828: Produce a warning when a no-arguments function is declared in blockRichard Smith2012-01-051-7/+6
* PR11614: Mark defaulted special constructors as constexpr if their implicitRichard Smith2011-12-222-6/+5
* constexpr: diagnostic improvements for invalid lvalue-to-rvalue conversions inRichard Smith2011-12-211-3/+3
* C++11 half of r147023: In C++11, additionally eagerly instantiate:Richard Smith2011-12-211-3/+2
* constexpr handling improvements. Produce detailed diagnostics when a 'constexpr'Richard Smith2011-12-192-17/+18
* Modify how the -verify flag works. Currently, the verification string andRichard Trieu2011-12-153-5/+5
* Resolve placeholder expressions before trying to deduceJohn McCall2011-11-151-1/+2
* Represent an APValue based on a Decl as that Decl, rather than a DeclRefExprRichard Smith2011-11-121-2/+6
* Constant expression evaluation: support for evaluation of structs and unions ofRichard Smith2011-11-101-2/+1
* constexpr: static data members declared constexpr are required to have anRichard Smith2011-11-072-5/+5
* Add test missed from r143234.Richard Smith2011-10-291-0/+32
* Undo unnecessary changeDouglas Gregor2011-10-251-1/+1
* Make the -Wc++11-compat warnings ignored by default, so we don't breakDouglas Gregor2011-10-251-2/+2
* Attach class template attributes to the templated CXXRecordDecl,Peter Collingbourne2011-10-231-0/+3
* Permit auto SCS on parameter declarations, C++03 [dcl.stc]p2Peter Collingbourne2011-10-211-0/+26
* Switch to the C++11 warning flags in tests. David Blaikie2011-10-184-4/+4
* Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith2011-10-1320-20/+20
* Switch diagnostic text from "C++0x" over to "C++11".Douglas Gregor2011-10-121-2/+2
* constexpr: Disable checking of constructor member initializer lists forRichard Smith2011-10-101-0/+38
* Diagnose attempts to declare a non-static data member with aDouglas Gregor2011-10-091-2/+3
* constexpr: semantic checking for constexpr functions and constructors. Based inRichard Smith2011-10-015-9/+443
* constexpr functions are implicitly const. More tests to follow.Richard Smith2011-09-301-1/+7
* constexpr: semantic checking for constexpr variables.Richard Smith2011-09-292-9/+50
* Add support for alignment-specifiers in C1X and C++11, removePeter Collingbourne2011-09-291-2/+1