Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
946 views
in Technique[技术] by (71.8m points)

c++ - How to replace std::is_same_v with std::is_same

I have this code containing std::is_same_v available with C++17. But I've stuck with C++14 due to toolchain limitation.

template<class T, class O = T>
using IteratorOnly = std::enable_if_t<
    !std::is_same_v<typename std::iterator_traits<T>::value_type, void>, O
>;

How can I replace std::is_same_v with std::is_same? Is there any workaround to be able to compile the code with just C++14?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The error got resolved by @Someprogrammerdude comment about a is_same_v helper variable template defined here. My final code is

#ifdef My_OLD_TOOL_CHAIN

template< class T, class U >
inline constexpr bool is_same_v = std::is_same<T, U>::value;

template<class T, class O = T>
using IteratorOnly = std::enable_if_t<
    !is_same_v<typename std::iterator_traits<T>::value_type, void>, O
>;

#else // My_OLD_TOOL_CHAIN

template<class T, class O = T>
using IteratorOnly = std::enable_if_t<
    !std::is_same_v<typename std::iterator_traits<T>::value_type, void>, O
>;

#endif // My_OLD_TOOL_CHAIN

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...