U
U.Mutlu
Minor compiler bug:
fKW ? S.sKeyw = pb : S.sVal = pb, v.push_back(S);
I had to to change it to this:
if (fKW) S.sKeyw = pb; else S.sVal = pb, v.push_back(S);
Compiler: g++ 4.6.2
fKW ? S.sKeyw = pb : S.sVal = pb, v.push_back(S);
I had to to change it to this:
if (fKW) S.sKeyw = pb; else S.sVal = pb, v.push_back(S);
Compiler: g++ 4.6.2