NeatReflection icon indicating copy to clipboard operation
NeatReflection copied to clipboard

Partial template specialization support to CodeGenerator

Open FireFlyForLife opened this issue 1 year ago • 0 comments

Take the following example:

template<typename T> IsVector { static constexpr bool value = false; };
template<typename T> IsVector<std::vector<T>> { static constexpr bool value = true; };

FireFlyForLife avatar Apr 15 '24 21:04 FireFlyForLife