//for the double
template<typename DT, typename RDT>
std::enable_if_t<std::is_same<RDT, double>::value, {the return type of the function}>function(.....){....}; (C++14)
or
typename std::enable_if<std::is_same<RDT, double>::value, {the return type of the function}>::type function(.....){....}; (C++11)
【 在 fangniuwawa 的大作中提到: 】
: 有一个模板函数
: template<typename DT, typename RDT> function(.....){....};
: DT的类型可以是1. double, complex<double>, 2. float, complex<float>,
: ...................
--
修改:mvtec FROM 67.163.48.*
FROM 67.163.48.*