Skip to content

Commit 8569a04

Browse files
committed
updating to master and Dan's PR #396
2 parents 5929007 + 2aebf00 commit 8569a04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inst/include/Rcpp/vector/Matrix.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ inline std::ostream &operator<<(std::ostream & s, const Matrix<REALSXP, StorageP
225225
typename MATRIX::Row::iterator jend = row.end();
226226

227227
if (j != jend) {
228-
s << std::setw(precision + 1) << (*j);
228+
s << std::showpoint << std::setw(precision + 1) << (*j);
229229
j++;
230230

231231
for ( ; j != jend; j++) {
232-
s << " " << std::setw(precision + 1) << (*j);
232+
s << " " << std::showpoint << std::setw(precision + 1) << (*j);
233233
}
234234
}
235235

0 commit comments

Comments
 (0)