template<typename SourceType, typename TargetType,
bool isSourceSmaller = (sizeof(SourceType) < sizeof(TargetType)),
bool isSourceEqual = (sizeof(SourceType) == sizeof(TargetType)),
bool isSourceSigned = std::is_signed<SourceType>::value,
bool isTargetSigned = std::is_signed<TargetType>::value>
struct kmp_convert< SourceType, TargetType, isSourceSmaller, isSourceEqual, isSourceSigned, isTargetSigned >
Definition at line 4787 of file kmp.h.