Looking at some code I noticed that another dev had changed every instance of true to !false. Why would you do that? thx
|
|
|||||||||||
|
|
|
There is no good reason to write !false instead of true. |
||
|
|
|
It might be necessary if the line
just happened to be somewhere in the headers :) |
||
|
|
maybe he got so many true and false in his code and he wanted to reverse it easily, he can just use his editor's search and replace, |
||
|
|
|
|
I think this is a historical thing. IIRC there was a problem on some C/C++ compilers knowing what the compiler would use to represent as true. You can know false is zero hence !false will be whatever the current ABI will have as true. Generically this is redundant but there are a few special case where it is useful but I can't think of one. |
||
|
|
|
|
I do not know actually but may be TRUE is not 1 (any thing > 0) and FALSE is zero so "not false" = 1 so he will be in safe place |
||||
|
|
|
I have no idea and I've been writing C++ for a while. I suspect whatever he reasons were they weren't good ones. |
||||||
|
