Changeset 15090


Ignore:
Timestamp:
05/23/13 21:01:37 (12 years ago)
Author:
Eric.Larour
Message:

CHG: fixed issue with overloading of ?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Elements/PrintArrays.cpp

    r14951 r15090  
    4343        for(int i=0;i<lines;i++){ 
    4444                _printString_("   [ ");
    45                 for(int j=0;j<cols;j++) _printString_( " " << array[i*cols+j]?1:0);
     45                for(int j=0;j<cols;j++){
     46                        if(array[i*cols+j]) _printString_( " 1");
     47                        else _printString_( " 0");
     48                }
    4649                _printLine_(" ]");
    4750        } 
Note: See TracChangeset for help on using the changeset viewer.