mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	Use CATCH_AUTO_PTR in DebugOutStream
This commit is contained in:
		@@ -15,6 +15,7 @@
 | 
			
		||||
#include <streambuf>
 | 
			
		||||
#include <ostream>
 | 
			
		||||
#include <fstream>
 | 
			
		||||
#include <memory>
 | 
			
		||||
 | 
			
		||||
namespace Catch {
 | 
			
		||||
 | 
			
		||||
@@ -49,7 +50,7 @@ namespace Catch {
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    class DebugOutStream : public IStream {
 | 
			
		||||
        std::auto_ptr<StreamBufBase> m_streamBuf;
 | 
			
		||||
        CATCH_AUTO_PTR( StreamBufBase ) m_streamBuf;
 | 
			
		||||
        mutable std::ostream m_os;
 | 
			
		||||
    public:
 | 
			
		||||
        DebugOutStream();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user