Changeset 1787
- Timestamp:
- Feb 9, 2009, 9:43:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/Vector.cc
r1680 r1787 87 87 nof_rows++; 88 88 89 std::vector<double> v; 89 data_matrix.push_back(std::vector<double>()); 90 std::vector<double>& v=data_matrix.back(); 90 91 std::string element; 91 92 std::stringstream ss(line); … … 132 133 throw utility::IO_error(s.str()); 133 134 } 134 data_matrix.push_back(v);135 135 } 136 136
Note: See TracChangeset
for help on using the changeset viewer.