stream() remove comma in NTTable

This commit is contained in:
Michael Davidsaver
2018-10-30 11:34:29 -07:00
parent 5f93e292b2
commit 9b20505dcd
2 changed files with 7 additions and 7 deletions

View File

@@ -269,7 +269,7 @@ bool printTable(std::ostream& strm, const PVStructure& top)
for(size_t c=0, N=coldat.size(); c<N; c++) {
strm<<std::setw(widths[c])<<std::right<<labels[c];
if(c+1!=N) {
strm<<", ";
strm<<' ';
}
}
strm<<'\n';
@@ -279,7 +279,7 @@ bool printTable(std::ostream& strm, const PVStructure& top)
for(size_t c=0, N=coldat.size(); c<N; c++) {
strm<<std::setw(widths[c])<<std::right<<coldat[c][r];
if(c+1!=N)
strm<<", ";
strm<<' ';
}
strm<<'\n';
}