We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff2a59 commit 0401bdaCopy full SHA for 0401bda
tests/test_make_caster_adl.cpp
@@ -7,7 +7,7 @@ struct type_mock {};
7
struct mock_caster {
8
static int num() { return 101; }
9
};
10
-mock_caster pybind11_select_caster(type_mock *);
+mock_caster pybind11_select_caster(type_mock *, mock_caster * = nullptr);
11
} // namespace adl_mock
12
13
namespace adl_mrc { // minimal real caster
@@ -41,7 +41,7 @@ struct minimal_real_caster {
41
}
42
43
44
-minimal_real_caster pybind11_select_caster(type_mrc *);
+minimal_real_caster pybind11_select_caster(type_mrc *, minimal_real_caster * = nullptr);
45
46
} // namespace adl_mrc
47
0 commit comments