Changeset 14922


Ignore:
Timestamp:
05/06/13 10:26:55 (12 years ago)
Author:
Mathieu Morlighem
Message:

BUG: replaced = by == in Echo()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/classes/objects/Bucket.h

    r14914 r14922  
    9999                        _printLine_("bucket type: " << type);
    100100                        _printLine_("num rows: "<<this->m<<" num cols: "<<this->n);
    101                         if(type=MATRIX_BUCKET){
     101                        if(type==MATRIX_BUCKET){
    102102                                for (i=0;i<this->m;i++){
    103103                                        _printLine_("row "<<this->idxm[i]<<", column indices: ");
     
    111111                                }
    112112                        }
    113                         else if(type=VECTOR_BUCKET){
     113                        else if(type==VECTOR_BUCKET){
    114114                                for (i=0;i<this->m;i++){
    115115                                        _printLine_("row "<<this->idxm[i]<<", value " << this->values[i]);
Note: See TracChangeset for help on using the changeset viewer.