Is there a way of guarding against the resulting binary from the code in this question? Ideally by way of an error at compile time. Example code from the question:
unsigned int nVal = 0;
nVal = -5; // no error!
|
Is there a way of guarding against the resulting binary from the code in this question? Ideally by way of an error at compile time. Example code from the question:
|
||||
|
If you are using g++, the switch |
|||||
|
|
Edit: Apart from @thiton's answer. With the simple assignment it's not possible. However, if you assign the value in a little special wrapped way, then it can help. i.e.
should be replaced with,
Where,
Demo. |
|||
|
|
compiler errorat runtime? Assignment happens at runtime. – Nawaz Sep 20 '11 at 11:40unsigned intanymore, but something likeEnforcedUnsignedIntwith other intermediate classes to cause different code generation when usingoperator =with signed / unsigned. Verdict: Not practical / realistic. – tenfour Sep 20 '11 at 11:450(which is signed), rather than0u, would presumably also generate the warning/error you want. – Graham Borland Sep 20 '11 at 11:48