🔨 added defined() check
This commit is contained in:
		
							parent
							
								
									e3e6cbecc7
								
							
						
					
					
						commit
						122afbf128
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -82,7 +82,7 @@ SOFTWARE.
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
// allow to disable exceptions
 | 
			
		||||
#if (__cpp_exceptions || defined(_CPPUNWIND)) && not defined(JSON_NOEXCEPTION)
 | 
			
		||||
#if (defined(__cpp_exceptions) || defined(_CPPUNWIND)) && not defined(JSON_NOEXCEPTION)
 | 
			
		||||
    #define JSON_THROW(exception) throw exception
 | 
			
		||||
    #define JSON_TRY try
 | 
			
		||||
    #define JSON_CATCH(exception) catch(exception)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -82,7 +82,7 @@ SOFTWARE.
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
// allow to disable exceptions
 | 
			
		||||
#if (__cpp_exceptions || defined(_CPPUNWIND)) && not defined(JSON_NOEXCEPTION)
 | 
			
		||||
#if (defined(__cpp_exceptions) || defined(_CPPUNWIND)) && not defined(JSON_NOEXCEPTION)
 | 
			
		||||
    #define JSON_THROW(exception) throw exception
 | 
			
		||||
    #define JSON_TRY try
 | 
			
		||||
    #define JSON_CATCH(exception) catch(exception)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue