You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using JCP for a product line. If a feature is included (e.g. for the feature belt) //#define belt is added.
Currently //#if belt && dev fails, if belt or dev is unknown. Note that this is possible to rewrite as 2 //#ifdef after each other, which is not possible with //#if belt || dev. It would be great to have a way to treat all undefined variables as false in the #if...
Thanks!
The text was updated successfully, but these errors were encountered:
added /U CLI option and unknownVarAsFalse boolean option into Maven and ANT to enable interpretation of unknown variables as FALSE, information about detection of such variables will be printed if caller in debug mode, now you can try
Hi,
I am using JCP for a product line. If a feature is included (e.g. for the feature belt)
//#define belt
is added.Currently
//#if belt && dev
fails, if belt or dev is unknown. Note that this is possible to rewrite as 2//#ifdef
after each other, which is not possible with//#if belt || dev
. It would be great to have a way to treat all undefined variables asfalse
in the#if
...Thanks!
The text was updated successfully, but these errors were encountered: