mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 14:09:33 +01:00 
			
		
		
		
	Remove pointless virtual on StreamingReporterBase::Node destructor
This commit is contained in:
		@@ -22,7 +22,6 @@ namespace Catch {
 | 
				
			|||||||
        template<typename T, typename ChildNodeT>
 | 
					        template<typename T, typename ChildNodeT>
 | 
				
			||||||
        struct Node {
 | 
					        struct Node {
 | 
				
			||||||
            explicit Node( T const& _value ) : value( _value ) {}
 | 
					            explicit Node( T const& _value ) : value( _value ) {}
 | 
				
			||||||
            virtual ~Node() = default;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
 | 
					            using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
 | 
				
			||||||
            T value;
 | 
					            T value;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user