mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 10:44:49 +01:00 
			
		
		
		
	common/assert: add unlikely
This commit is contained in:
		
							parent
							
								
									d11547024c
								
							
						
					
					
						commit
						a29ddcee40
					
				| @ -7,7 +7,7 @@ | ||||
| #include "common/settings.h" | ||||
| 
 | ||||
| void assert_check_condition(bool cond, std::function<void()>&& on_failure) { | ||||
|     if (!cond) { | ||||
|     if (!cond) [[unlikely]] { | ||||
|         on_failure(); | ||||
| 
 | ||||
|         if (Settings::values.use_debug_asserts) { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user