I cannot understand why LabWindows refuses to shift bits at all; it pretends the command doesn't even exist when tracking with breakpoints:
int pattern = 1;
.
.
.
if (pattern == 255)
{
pattern =1;
// I have other assignments here that do not involve pattern.
}
else
{
pattern << 1;
// I have other assignments here that do not involve pattern and that work fine.
}
I'm at my wits end and the help file is providing no help whatsoever. Given this is working just fine and dandy in XCode/gcc, I'm wondering why LabWindows refuses to do as it is told. I can only speculate that bitshifting is done differently in LabWindows?
Any help would be appreciated.