C++ Logo

std-proposals

Advanced search

Re: Specific Override Specifier

From: Michał Policht <michal_at_[hidden]>
Date: Wed, 18 Mar 2020 15:37:38 +0100
>
> I'd suggest a different syntax:
>
> class A : public B, public C
> {
> virtual int B::lock() override;
> virtual int C::lock() override;
> };
>
> but I've only needed this rarely; I suspect it probably isn't worth the
> trouble.

With such syntax you could get rid of `override`, since it can be
deduced (maybe even `virtual`, but some language rules might prevent this).


Regards
Michał

Received on 2020-03-18 09:40:29