Re: [PATCH] C++0x, virt-specifier (final/override) support for member functions (parser and analysis both)

2011-05-07 Thread Jason Merrill
I might as well fix these issues myself, actually. Jason

Re: [PATCH] C++0x, virt-specifier (final/override) support for member functions (parser and analysis both)

2011-05-07 Thread Jason Merrill
On 05/07/2011 07:48 PM, Ville Voutilainen wrote: +static tree set_virt_specifiers (tree decl, cp_virt_specifiers specifiers) The name of the function needs to be at the beginning of the line. + else + virt_specifier = VIRT_SPEC_UNSPECIFIED; + + if (!virt_specifier) +

[PATCH] C++0x, virt-specifier (final/override) support for member functions (parser and analysis both)

2011-05-07 Thread Ville Voutilainen
Tested on Linux/X86-32. Final on class is not yet supported, that's probably what I'll be working on next. Changelog and patch follow. Please holler if anything's wrong, as far as I can see this works as it's supposed to. 2011-05-08 Ville Voutilainen Implement final/override for memb