I have an integer that may have the most significant bits different or equal.
I want to chekc for that.
Actually I do:
struct obj{
public:
Token t;
bool isNumber(){return t<<1>>1==t;}
Instead I would like to do something like:
struct obj{
public:
Token t;
bool isNumber(){t+t;return ProcessorOverflowFlag;}
Is there any way to do it in g++ or clang