use int8_t for a larger list

This commit is contained in:
Ahmet Inan 2022-05-19 12:21:09 +02:00
commit 91ba106dc6

View file

@ -160,7 +160,7 @@ void base37_decoder(char *str, long long int val, int len)
template <typename value, typename cmplx, int rate>
struct Decoder
{
typedef float code_type;
typedef int8_t code_type;
#ifdef __AVX2__
typedef SIMD<code_type, 32 / sizeof(code_type)> mesg_type;
#else