Remove unused RDBufStream type

This commit is contained in:
Martin Hořeňovský 2022-04-12 22:22:04 +02:00
parent f25236ff43
commit d698776ec5
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 0 additions and 15 deletions

View File

@ -17,21 +17,6 @@
#include <ostream>
namespace Catch {
namespace Detail {
namespace {
class RDBufStream : public IStream {
mutable std::ostream m_os;
public:
//! The streambuf `sb` must outlive the constructed object.
RDBufStream( std::streambuf* sb ): m_os( sb ) {}
~RDBufStream() override = default;
public: // IStream
std::ostream& stream() const override { return m_os; }
};
} // unnamed namespace
} // namespace Detail
Config::Config( ConfigData const& data ):
m_data( data ) {