Re: [C++-sig] Segfault with keyword arguments and overloads.

2013-08-07 Thread Alex Mohr
Thanks for your response. I've responded to your comments in-line below. After further investigation, I believe this can be fixed by simply checking for None when we get 'kv' from f->m_arg_names while resolving keywords. If we encounter None, that means the overload doesn't accept a keyword

Re: [C++-sig] Segfault with keyword arguments and overloads.

2013-08-07 Thread Alex Leach
Hi, On Wed, 07 Aug 2013 01:35:54 +0100, Alex Mohr wrote: I'm hitting a repeatable segfault trying to upgrade our boost version. I believe there may be a bug with overload resolution in the presence of keyword arguments. Here's a minimal example that crashes for me. // C++ #include stat