Skip to content

Commit e3c64de

Browse files
committed
Revert "Write to R console on NULL path"
This reverts commit 7108dfa.
1 parent 7108dfa commit e3c64de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/write_delim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ std::string stream_delim_(
107107
if (connection == R_NilValue) {
108108
std::ostringstream output;
109109
stream_delim(output, df, delim, na, col_names, bom);
110-
Rcpp::Rcout << output.str();
110+
return output.str();
111111
} else {
112112
boost::iostreams::stream<connection_sink> output(connection);
113113
stream_delim(output, df, delim, na, col_names, bom);

0 commit comments

Comments
 (0)