fixed unknown value bug in pre-processor
This commit is contained in:
parent
771770af22
commit
1640bafa80
1 changed files with 2 additions and 2 deletions
|
@ -622,8 +622,8 @@ public abstract class BExpressionContext implements IByteArrayUnifier
|
|||
if ( lookupData2 != null )
|
||||
{
|
||||
// do not create unknown value for external data array,
|
||||
// record as 'other' instead
|
||||
lookupData2[inum] = 0;
|
||||
// record as 'unknown' instead
|
||||
lookupData2[inum] = 1; // 1 == unknown
|
||||
if (bFoundAsterix) {
|
||||
// found value for lookup *
|
||||
//System.out.println( "add unknown " + name + " " + value );
|
||||
|
|
Loading…
Reference in a new issue