
Jesse P. answered 03/28/19
Computer Programming And Math Expert
My best guess is that it's just remnant debugging code.
Sometimes when I'm working on something and want to test some functionality, instead of commenting out an if statement, I can simply set it to "if(false)" so that it's guaranteed to skip it. Or vice versa if I want to test out logic inside of an if block, but don't want to have to do a bunch of setup in order for it the evaluate as true, so I can just hard code it to true to force it to enter.
Looks like that may have been what was going on with this macro, and whoever designed it just never went through to do cleanup.