mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	Merge pull request #1717 from ax3l/fix-storageClassFirst
static constexpr: storage class first
This commit is contained in:
		@@ -97,7 +97,7 @@ namespace Catch {
 | 
			
		||||
    
 | 
			
		||||
    // 32kb for the alternate stack seems to be sufficient. However, this value
 | 
			
		||||
    // is experimentally determined, so that's not guaranteed.
 | 
			
		||||
    constexpr static std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
 | 
			
		||||
    static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
 | 
			
		||||
 | 
			
		||||
    static SignalDefs signalDefs[] = {
 | 
			
		||||
        { SIGINT,  "SIGINT - Terminal interrupt signal" },
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user