lemo added subscribers: clayborg, jingham, labath, apolyakov. lemo added a comment.
> Ah I see. That's because the last argument is a C++ default argument. It > looks like the convention in this file is that the error argument should be > the last non-defaulted argument. I think it should be: void StepOver(lldb::RunMode stop_other_threads, lldb::SBError &error); // no default argument! Ie. if you want the overload with error you need to pass RunMode explicitly. Keeping the overload set manageable is a good practice in general, not just because of SWIG (default arguments + overloaded arguments can easily get out of hand) https://reviews.llvm.org/D47991 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits