Home
last modified time | relevance | path

Searched refs:BreaksTramp (Results 1 – 1 of 1) sorted by relevance

/external/python/pybind11/tests/
Dtest_class.cpp488 template <int N> class BreaksTramp : public BreaksBase<N> {}; class
490 using DoesntBreak1 = py::class_<BreaksBase<1>, std::unique_ptr<BreaksBase<1>>, BreaksTramp<1>>;
491 using DoesntBreak2 = py::class_<BreaksBase<2>, BreaksTramp<2>, std::unique_ptr<BreaksBase<2>>>;
493 using DoesntBreak4 = py::class_<BreaksBase<4>, BreaksTramp<4>>;
495 using DoesntBreak6 = py::class_<BreaksBase<6>, std::shared_ptr<BreaksBase<6>>, BreaksTramp<6>>;
496 using DoesntBreak7 = py::class_<BreaksBase<7>, BreaksTramp<7>, std::shared_ptr<BreaksBase<7>>>;
501 …tBreak##N::has_alias && std::is_same<typename DoesntBreak##N::type_alias, BreaksTramp<N>>::value, \