mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 13:15:12 +00:00
pybind11.h: minor cleanups (no functionality change)
This commit is contained in:
parent
6969e7c1ba
commit
1f66a58427
@ -476,8 +476,7 @@ protected:
|
||||
}
|
||||
msg += " Invoked with: ";
|
||||
tuple args_(args, true);
|
||||
for( std::size_t ti = overloads->is_constructor ? 1 : 0; ti < args_.size(); ++ti)
|
||||
{
|
||||
for (size_t ti = overloads->is_constructor ? 1 : 0; ti < args_.size(); ++ti) {
|
||||
msg += static_cast<std::string>(static_cast<object>(args_[ti]).str());
|
||||
if ((ti + 1) != args_.size() )
|
||||
msg += ", ";
|
||||
|
Loading…
Reference in New Issue
Block a user