For my code
template Signal<float>;
template Signal<bit_t>;
template Signal<byte_t>;
template Signal< std::complex<float> >;
template Signal< int >;
I get compilation errors
error at signal_T.cpp:437: error: expected unqualified-id before â;â token signal_T.cpp:438: error: expected unqualified-id before â;â token signal_T.cpp:439: error: expected unqualified-id before â;â token signal_T.cpp:440: error: expected unqualified-id before â;â token signal_T.cpp:441: error: expected unqualified-id before â;â token
What does the compiler want to tell me?
How can I fix these errors?