aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/io/buffer_io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/io/buffer_io.rs')
-rw-r--r--crates/shirabe/src/io/buffer_io.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/shirabe/src/io/buffer_io.rs b/crates/shirabe/src/io/buffer_io.rs
index 836fd95..0696c1c 100644
--- a/crates/shirabe/src/io/buffer_io.rs
+++ b/crates/shirabe/src/io/buffer_io.rs
@@ -44,7 +44,8 @@ impl BufferIO {
// Real fix requires unifying the two crate paths.
let _ = formatter;
let _ = StreamOutput::new(stream, verbosity, Some(decorated));
- let output: Box<dyn OutputInterface> = todo!("StreamOutput as Box<dyn OutputInterface>");
+ let output: std::rc::Rc<std::cell::RefCell<dyn OutputInterface>> =
+ todo!("StreamOutput as std::rc::Rc<std::cell::RefCell<dyn OutputInterface>>");
// TODO(phase-b): symfony console helper modules live under both `symfony::console`
// and `symfony::component::console`; QuestionHelper::new is not yet provided.