I have a string class with constant storage to avoid memory allocations on strings I know their fixed size, the class is defined as:
template <SizeType N>
class CString;
If I try to register a class with a property member of this type then the compiler will complain about not finding the type associated to it:
'rttr::type::get': no matching overloaded function found
Since it's a templated class I can't use the normal registration API, is there a workaround for this? Perhaps specialize some type implementation detail?
I have a string class with constant storage to avoid memory allocations on strings I know their fixed size, the class is defined as:
If I try to register a class with a property member of this type then the compiler will complain about not finding the type associated to it:
'rttr::type::get': no matching overloaded function foundSince it's a templated class I can't use the normal registration API, is there a workaround for this? Perhaps specialize some type implementation detail?