```C++ #define BP_WHERE_T_INHERITS(T, Base) static_assert(std::is_base_of<Base, T>::value, #T " must inherit from " #Base) ```