File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
int main () {
7
7
const auto rec = rerun::RecordingStream (" rerun_example_stdio" );
8
- rec.stdout ().exit_on_failure ();
8
+ rec.to_stdout ().exit_on_failure ();
9
9
10
10
std::string input;
11
11
std::string line;
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ namespace rerun {
128
128
return status;
129
129
}
130
130
131
- Error RecordingStream::stdout () const {
131
+ Error RecordingStream::to_stdout () const {
132
132
rr_error status = {};
133
133
rr_recording_stream_stdout (_id, &status);
134
134
return status;
Original file line number Diff line number Diff line change @@ -174,15 +174,15 @@ namespace rerun {
174
174
// / This function returns immediately.
175
175
Error save (std::string_view path) const ;
176
176
177
- // / Stream all log-data to stdout .
177
+ // / Stream all log-data to standard output .
178
178
// /
179
179
// / Pipe the result into the Rerun Viewer to visualize it.
180
180
// /
181
181
// / If there isn't any listener at the other end of the pipe, the `RecordingStream` will
182
182
// / default back to `buffered` mode, in order not to break the user's terminal.
183
183
// /
184
184
// / This function returns immediately.
185
- Error stdout () const ;
185
+ Error to_stdout () const ;
186
186
187
187
// / Initiates a flush the batching pipeline and waits for it to propagate.
188
188
// /
You can’t perform that action at this time.
0 commit comments