mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	Fix compilation of examples
This commit is contained in:
		@@ -27,7 +27,7 @@ TEST_CASE("Generate random doubles across different ranges",
 | 
			
		||||
    // This will take r1 by reference and r2 by value.
 | 
			
		||||
    // Note that there are no advantages for doing so in this example,
 | 
			
		||||
    // it is done only for expository purposes.
 | 
			
		||||
    auto number = Catch::Generators::generate( CATCH_INTERNAL_LINEINFO,
 | 
			
		||||
    auto number = Catch::Generators::generate( "custom capture generator", CATCH_INTERNAL_LINEINFO,
 | 
			
		||||
        [&r1, r2]{
 | 
			
		||||
            using namespace Catch::Generators;
 | 
			
		||||
            return makeGenerators(take(50, random(std::get<0>(r1), std::get<1>(r2))));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user