Changeset 310


Ignore:
Timestamp:
May 3, 2005, 9:17:18 PM (18 years ago)
Author:
Peter
Message:

fixed bug with output operator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/gslapi/vector.cc

    r309 r310  
    186186
    187187
    188   std::ostream& theplu::gslapi::operator<<(std::ostream& s, const vector& a)
     188  std::ostream& operator<<(std::ostream& s, const vector& a)
    189189  {
    190190    s.setf(std::ios::fixed);
    191     s.precision(3);
     191
    192192    for (size_t j = 0; j < a.size(); ++j) {
    193193      s << a[j];
Note: See TracChangeset for help on using the changeset viewer.