From 3c1f49de8fe10a58d0021e110e21560a626bb7f4 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Tue, 8 Dec 2015 18:28:54 -0800 Subject: [PATCH] fix(library/io_state): typo --- src/library/io_state.cpp | 2 +- src/library/io_state.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library/io_state.cpp b/src/library/io_state.cpp index ed9da376d..04f71565f 100644 --- a/src/library/io_state.cpp +++ b/src/library/io_state.cpp @@ -37,7 +37,7 @@ io_state::io_state(options const & opts, formatter_factory const & fmtf): m_regular_channel(std::make_shared()), m_diagnostic_channel(std::make_shared()) { } -io_state::io_state(io_state const & ios, std::shared_ptr const & r, std::shared_ptr const d): +io_state::io_state(io_state const & ios, std::shared_ptr const & r, std::shared_ptr const & d): m_options(ios.m_options), m_formatter_factory(ios.m_formatter_factory), m_regular_channel(r), diff --git a/src/library/io_state.h b/src/library/io_state.h index 25888092a..889b3e01d 100644 --- a/src/library/io_state.h +++ b/src/library/io_state.h @@ -26,7 +26,7 @@ public: io_state(); io_state(formatter_factory const & fmtf); io_state(options const & opts, formatter_factory const & fmtf); - io_state(io_state const & ios, std::shared_ptr const & r, std::shared_ptr const d); + io_state(io_state const & ios, std::shared_ptr const & r, std::shared_ptr const & d); io_state(io_state const & ios, options const & o); ~io_state();