mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 14:09:33 +01:00 
			
		
		
		
	Cleaned up some more warnings
This commit is contained in:
		@@ -36,7 +36,7 @@ TEST_CASE( "succeeding/Misc/Sections/nested", "nested SECTION tests" )
 | 
			
		||||
    
 | 
			
		||||
    SECTION( "s1", "doesn't equal" )
 | 
			
		||||
    {
 | 
			
		||||
        REQUIRE( a != b ) "a should not equal b";
 | 
			
		||||
        REQUIRE( a != b );
 | 
			
		||||
        REQUIRE( b != a );
 | 
			
		||||
 | 
			
		||||
        SECTION( "s2", "not equal" )
 | 
			
		||||
 
 | 
			
		||||
@@ -101,11 +101,11 @@ namespace Catch
 | 
			
		||||
            m_currentStats = &m_testSuiteStats;
 | 
			
		||||
        }
 | 
			
		||||
        
 | 
			
		||||
        virtual void StartSection( const std::string& sectionName, const std::string description )
 | 
			
		||||
        virtual void StartSection( const std::string& /*sectionName*/, const std::string /*description*/ )
 | 
			
		||||
        {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        virtual void EndSection( const std::string& sectionName, std::size_t succeeded, std::size_t failed )
 | 
			
		||||
        virtual void EndSection( const std::string& /*sectionName*/, std::size_t /*succeeded*/, std::size_t /*failed*/ )
 | 
			
		||||
        {
 | 
			
		||||
        }
 | 
			
		||||
        
 | 
			
		||||
 
 | 
			
		||||
@@ -58,7 +58,7 @@ namespace Catch
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        ///////////////////////////////////////////////////////////////////////////
 | 
			
		||||
        virtual void EndGroup( const std::string& groupName, std::size_t succeeded, std::size_t failed )
 | 
			
		||||
        virtual void EndGroup( const std::string& /*groupName*/, std::size_t succeeded, std::size_t failed )
 | 
			
		||||
        {
 | 
			
		||||
            m_xml.scopedElement( "OverallResults" )
 | 
			
		||||
                .writeAttribute( "successes", succeeded )
 | 
			
		||||
@@ -75,7 +75,7 @@ namespace Catch
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        ///////////////////////////////////////////////////////////////////////////
 | 
			
		||||
        virtual void EndSection( const std::string& sectionName, std::size_t succeeded, std::size_t failed )
 | 
			
		||||
        virtual void EndSection( const std::string& /*sectionName*/, std::size_t succeeded, std::size_t failed )
 | 
			
		||||
        {
 | 
			
		||||
            m_xml.scopedElement( "OverallResults" )
 | 
			
		||||
                .writeAttribute( "successes", succeeded )
 | 
			
		||||
@@ -138,7 +138,7 @@ namespace Catch
 | 
			
		||||
        }
 | 
			
		||||
        
 | 
			
		||||
        ///////////////////////////////////////////////////////////////////////////
 | 
			
		||||
        virtual void EndTestCase( const Catch::TestCaseInfo&, const std::string& stdOut, const std::string& stdErr )
 | 
			
		||||
        virtual void EndTestCase( const Catch::TestCaseInfo&, const std::string& /*stdOut*/, const std::string& /*stdErr*/ )
 | 
			
		||||
        {
 | 
			
		||||
            m_xml.scopedElement( "OverallResult" ).writeAttribute( "success", m_currentTestSuccess );
 | 
			
		||||
            m_xml.endElement();
 | 
			
		||||
 
 | 
			
		||||
@@ -67,7 +67,7 @@ namespace Detail
 | 
			
		||||
    template<typename T>
 | 
			
		||||
    struct StringMaker<T, false>
 | 
			
		||||
    {
 | 
			
		||||
        static std::string apply( const T& value )
 | 
			
		||||
        static std::string apply( const T& )
 | 
			
		||||
        {
 | 
			
		||||
            return "{?}";
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user