summaryrefslogtreecommitdiffstats
path: root/test/CXX/class
Commit message (Expand)AuthorAgeFilesLines
* Bah...Bill Wendling2012-05-121-17/+0
* Merging r155426:Bill Wendling2012-05-121-1/+9
* Merging r155424:Bill Wendling2012-05-121-1/+10
* Implement the last part of C++ [class.mem]p2, delaying the parsing ofDouglas Gregor2012-04-161-0/+27
* Improve diagnostics for invalid use of non-static members / this:Richard Smith2012-04-051-2/+2
* Don't assert when trying to diagnose why a class with a constructor template isRichard Smith2012-02-261-0/+4
* Make sure we still reject static data members in anonymous unions in C++11.Richard Smith2012-02-161-0/+12
* C++11 allows unions to have static data members. Remove the correspondingRichard Smith2012-02-162-1/+38
* Deal with a horrible C++11 special case. If a non-literal type has a constexprRichard Smith2012-02-131-3/+3
* Update constexpr implementation to match CWG's chosen approach for core issuesRichard Smith2012-02-131-4/+3
* PR11684, core issue 1417:Richard Smith2012-02-101-1/+1
* Remove the "unsupported" error for lambda expressions. It's annoying,Douglas Gregor2012-02-091-1/+1
* Various interrelated cleanups for lambdas:Douglas Gregor2012-02-091-2/+2
* Misc improvements to the diagnostic when a variable is odr-used in a context ...Eli Friedman2012-02-073-2/+20
* Further testing for instantiation of out-of-line constexpr static data memberRichard Smith2012-01-191-0/+5
* An instantiation of a constexpr static data member in a class template isRichard Smith2012-01-191-0/+14
* Modify how the -verify flag works. Currently, the verification string andRichard Trieu2011-12-154-13/+13
* Include named unions in union member init checkingDavid Blaikie2011-11-171-0/+26
* constexpr: static data members declared constexpr are required to have anRichard Smith2011-11-071-1/+1
* When we notice that a member function is defined with "= delete" or "=Douglas Gregor2011-11-071-0/+15
* Make the -Wc++11-compat warnings ignored by default, so we don't breakDouglas Gregor2011-10-251-1/+1
* In C++11, a class's members are allowed to be nominated as friends.Richard Smith2011-10-181-0/+12
* Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith2011-10-138-8/+8
* Switch diagnostic text from "C++0x" over to "C++11".Douglas Gregor2011-10-122-2/+2
* Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289.Douglas Gregor2011-10-101-0/+22
* PR11067: A definition of a constexpr static variable doesn't need an initiali...Richard Smith2011-10-061-1/+3
* Suggest adding 'constexpr' if the GNU extension for in-class initializers for...Richard Smith2011-09-301-1/+1
* Mark the ExtWarn for in-class initialization of static const float members as...Richard Smith2011-09-291-2/+2
* constexpr: semantic checking for constexpr variables.Richard Smith2011-09-291-0/+24
* PR10458: Finesse behaviour of C++0x features when in pre-0x mode. Accept for-...Richard Smith2011-09-041-1/+1
* Test for C++11 [class]p6 (trivial classes).Richard Smith2011-06-121-0/+15
* Implement support for C++11 in-class initialization of non-static data members.Richard Smith2011-06-111-0/+9
* Tweak the diagnostics for the C++0x extensions to friend types to noteDouglas Gregor2011-05-101-2/+2
* Fix a typo in a test.Richard Trieu2011-05-041-1/+1
* Diagnose attempts to implicitly instantiate a template before it isJohn McCall2011-04-271-0/+31
* When creating an implicit member expression through a qualified-id, check tha...Argyrios Kyrtzidis2011-04-141-6/+11
* This test works now; enable it.John McCall2011-04-121-18/+16
* Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only...Anders Carlsson2011-03-251-4/+0
* Remove warnings about using override control keywords in inline function defi...Anders Carlsson2011-03-251-13/+0
* Remove 'new' from virt-specifier since it's going to be removed in the next C...Anders Carlsson2011-03-252-3/+0
* PR9037: Allow override, final, and new as an extension on inline members.Nico Weber2011-01-282-0/+42
* Mark classes final and/or explicit during class template instantiation.Anders Carlsson2011-01-221-0/+20
* Mark classes as final or explicit. Diagnose when a class marked 'final' is us...Anders Carlsson2011-01-221-0/+8
* Parse class-virt-specifier-seqs.Anders Carlsson2011-01-221-0/+10
* Fix tests to be valid.Anders Carlsson2011-01-201-2/+11
* Change the parser error to reflect that virt-specifiers are allowed on any cl...Anders Carlsson2011-01-201-3/+3
* Only allow virtual member functions to be marked 'override' and 'final'.Anders Carlsson2011-01-201-0/+12
* Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct.Anders Carlsson2011-01-171-0/+6
* Forgot a file in r120182Sebastian Redl2010-11-261-0/+14
* Allow access to non-static members without an object in sizeof expressions, i...Sebastian Redl2010-11-261-3/+3