Skip to content

Commit 5b0f9e2

Browse files
committed
fixup! fix: more cleanup
1 parent 216d60d commit 5b0f9e2

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/test_multiple_inheritance.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -192,14 +192,6 @@ TEST_SUBMODULE(multiple_inheritance, m) {
192192
.def_static("static_func", &VanillaStaticMix2::static_func)
193193
.def_readwrite_static("static_value", &VanillaStaticMix2::static_value);
194194

195-
196-
struct WithDict { };
197-
struct VanillaDictMix1 : Vanilla, WithDict { };
198-
struct VanillaDictMix2 : WithDict, Vanilla { };
199-
py::class_<WithDict>(m, "WithDict", py::dynamic_attr()).def(py::init<>());
200-
py::class_<VanillaDictMix1, Vanilla, WithDict>(m, "VanillaDictMix1").def(py::init<>());
201-
py::class_<VanillaDictMix2, WithDict, Vanilla>(m, "VanillaDictMix2").def(py::init<>());
202-
203195
// test_diamond_inheritance
204196
// Issue #959: segfault when constructing diamond inheritance instance
205197
// All of these have int members so that there will be various unequal pointers involved.

0 commit comments

Comments
 (0)