Re: [asio-users] Any solution for polymorphic SSL stream support?
Brought to you by:
chris_kohlhoff
From: Vinnie F. <vin...@gm...> - 2017-08-16 19:41:20
|
On Wed, Aug 16, 2017 at 12:51 AM, Aaron Koolen-Bourke <aar...@gm...> wrote: > One related thing I noticed when stepping through the code was that there > was often multiple calls to invoke, sometimes from a handler helpers > namespace and all that did was call invoke again in the asio namespace. > What's the reasoning for this? That's a work-around for older compilers with bugs related to argument-dependent lookup. In release builds it all gets optimized away. Thanks |