We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bdf01a commit ba4976fCopy full SHA for ba4976f
include/pybind11/pybind11.h
@@ -551,7 +551,7 @@ class cpp_function : public function {
551
/* Create a nice pydoc rec including all signatures and
552
docstrings of the functions in the overload chain */
553
if (chain) {
554
- for (auto it = chain_start; it != nullptr; it = it->next) {
+ for (auto *it = chain_start; it != nullptr; it = it->next) {
555
signatures += rec->name;
556
signatures += it->signature;
557
signatures += "\n";
0 commit comments