Re: [Vote] Release log4net 2.0.13-rc2

2021-11-07 Thread Ralph Goers
I have committed the release files to https://dist.apache.org/repos/dist/release/logging/log4net/ Ralph > On Nov 2, 2021, at 8:56 AM, Davyd McColl wrote: > > Hi Ralph > > Yes. I'd gladly upload them myself if I had permission to do so. If there's a > way I can make it easier for you, please

Re: [Vote] Release log4net 2.0.13-rc2

2021-11-07 Thread Davyd McColl
Thanks Ralph, appreciated. -d On November 7, 2021 09:54:55 Ralph Goers wrote: I have committed the release files to https://dist.apache.org/repos/dist/release/logging/log4net/ Ralph On Nov 2, 2021, at 8:56 AM, Davyd McColl wrote: Hi Ralph Yes. I'd gladly upload them myself if I had pe

Re: [log4cxx] ABI stability

2021-11-07 Thread Robert Middleton
I think I see what you're saying now. We can do something like this: class A{ virtual APrivate* private_data(){ return priv.get(); } unique_ptr priv; }; class B: public A{ virtual BPrivate* private_data(){ return static_cast(priv.get()); } }; I don't see any advantage to this

Re: [log4cxx] ABI stability

2021-11-07 Thread Thorsten Schöning
Guten Tag Robert Middleton, am Sonntag, 7. November 2021 um 17:36 schrieben Sie: > I don't see any advantage to this over a macro, unless you were > thinking of something else? That's exactly what I meant and the benefits I see are simply avoiding a macro and having something documented for the c