lisitsyn / tapkee

A flexible and efficient С++ template library for dimension reduction
http://tapkee.lisitsyn.me
BSD 3-Clause "New" or "Revised" License
231 stars 58 forks source link

ezoptionparser error #20

Closed skn123 closed 5 months ago

skn123 commented 10 years ago
        case S1: CHECKRANGE(S1,char); break;
        case U1: CHECKRANGE(U1,unsigned char); break;
        case S2: CHECKRANGE(S2,short); break;
        case U2: CHECKRANGE(U2,unsigned short); break;
        case S4: CHECKRANGE(S4,int); break;
        case U4: CHECKRANGE(U4,unsigned int); break;

Error 34 error C2589: '(' : illegal token on right side of '::' ...

lisitsyn commented 10 years ago

Completely lost it! So sorry about that. Is it still relevant?

iglesias commented 5 months ago
        case S1: CHECKRANGE(S1,char); break;
        case U1: CHECKRANGE(U1,unsigned char); break;
        case S2: CHECKRANGE(S2,short); break;
        case U2: CHECKRANGE(U2,unsigned short); break;
        case S4: CHECKRANGE(S4,int); break;
        case U4: CHECKRANGE(U4,unsigned int); break;

Error 34 error C2589: '(' : illegal token on right side of '::' ...

There are no '::' in the snippet and I did not reproduce any build error.