There is no portable solution. For GCC, which will be
struct __attribute__((packed)) kmer_value {
uint32_t count : 32;
uint32_t path_length : 32;
uint8_t acgt_prev : 4;
uint8_t acgt_next : 4;
};
In MSVC, #pragma packyou can achieve the same effect.
Refer to your compiler documentation.
source
share