Description
Currently us meta-programmers have no way to have multiple complier conditions enabling the same piece of code other than by repeating the distinct conditions
Use Case
I want to have the same piece of code compiled under multiple mutually exclusive compile conditions. I can achieve this now by repeating the directive: #if blah1 [code] #endif #if blah2 [same code] #endif Better would be: #if blah1 #or blah2 [code] 'endif
Importance
Developer usablility Readability of code Ease of quality assurance in code.
Type
Scripting/Coding
Operating System
Not Applicable
Status
Open