Replace is_derived_from with std::is_base_of<> #192
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
C++11 has a default function to determine the inheritance of a type at compile time.
Example:
In contrast to our implementation, the order of type arguments is different!
Implemented by #193