| 137 | struct SharedPtrStash { |
| 138 | std::vector<std::shared_ptr<const atyp>> stash; |
| 139 | void Add(const std::shared_ptr<const atyp> &obj) { stash.push_back(obj); } |
| 140 | }; |
| 141 | |
| 142 | class LocalUnusualOpRef : UnusualOpRef {}; // To avoid clashing with `py::class_<UnusualOpRef>`. |
no test coverage detected