Loading...
Searching...
No Matches
5template <
typename class_t>
8template <
template <
typename>
class class_t,
class derived_t>
9class CRTP<class_t<derived_t>> {
11 constexpr auto self() -> derived_t& {
return static_cast<derived_t&
>(*this); }
12 constexpr auto self()
const -> derived_t
const&
14 return static_cast<derived_t const&
>(*this);