Changeset 994


Ignore:
Timestamp:
04/06/06 10:14:14 (18 years ago)
Author:
mar637
Message:

samll bugfix: output type uInt needs to be streamed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STAsciiWriter.cpp

    r988 r994  
    124124    of << std::left << setw(16) << "x";
    125125    for ( int i=0; i<t.nrow(); ++i ) {
    126       String y = "y"+ String(i);
    127       String ym = "yflag"+ String(i);
    128       of << setw(16) << y;
    129       of << setw(7) << ym;
     126      ostringstream os,os1;
     127      os << "y" << i;
     128      os1 << "yf" << i;
     129      of << setw(16) << String(os);
     130      of << setw(7) << String(os1);
    130131    }
    131132    of << endl;
Note: See TracChangeset for help on using the changeset viewer.