Replace is_derived_from with std::is_base_of<> #192

Closed
opened 2020-09-07 16:05:11 +02:00 by gaisser · 1 comment
Owner

C++11 has a default function to determine the inheritance of a type at compile time.
Example:

std::is_base_of<SerializeIF, T>::value

In contrast to our implementation, the order of type arguments is different!

C++11 has a default function to determine the inheritance of a type at compile time. Example: ``` std::is_base_of<SerializeIF, T>::value ``` In contrast to our implementation, the order of type arguments is different!
gaisser added the
feature
label 2020-09-07 16:05:11 +02:00
Author
Owner

Implemented by #193

Implemented by #193
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: fsfw/fsfw#192
No description provided.