template <typename T, typename = void>
class Recyclable
Defined at line 86 of file ../../zircon/system/ulib/fbl/include/fbl/recycler.h
Default implementation of fbl::Recyclable.
Note: we provide a default implementation instead of just a fwd declaration
so we can add a static_assert which will give a user a more human readable
error in case they make the mistake of deriving from fbl::Recyclable
<const
Foo>
instead of fbl::Recyclable
<Foo
>