Hey Folks,
I have a question. I have a legacy application which used bit fields in a structure. Something like this
struct sample
{
BYTE one: 2;
BYTE two : 1;
BYTE three: 5;
} sampletest;
So "three" can have a value of MAX 31 only.
Now I have a requirement to increase the MAX value of three. I am planning to remove the bit fields. It will assume more memory now. Apart from this, Is there anything that I need to take care? Does it cause any more other harm?
Thanks in Advance, -Mani.