I am trying to use cc with generic types.
i would expect there to be some way to make the following valid:
#define CC_NO_SHORT_NAMES
#include <https://raw.githubusercontent.com/JacksonAllan/CC/refs/heads/main/cc.h>
template< typename T> struct cc_tmpl_test
{
cc_vec( T ) data;
};
int main()
{
cc_tmpl_test<float> s;
}
see https://godbolt.org/z/zfdx7zGqb
I am trying to use cc with generic types.
i would expect there to be some way to make the following valid:
see https://godbolt.org/z/zfdx7zGqb