mirror of
				https://github.com/swaywm/sway.git
				synced 2025-10-29 05:40:18 -04:00 
			
		
		
		
	Remove __PRETTY_FUNCTION__
This is a non-standard extension as well as completely useless in C. __func__ is the standard way of doing this.
This commit is contained in:
		
							parent
							
								
									f255881134
								
							
						
					
					
						commit
						bcde223129
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -15,7 +15,7 @@ void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2); | |||
| 
 | ||||
| bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3); | ||||
| #define sway_assert(COND, FMT, ...) \ | ||||
| 	_sway_assert(COND, "[%s:%d] %s:" FMT, _wlr_strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__) | ||||
| 	_sway_assert(COND, "[%s:%d] %s:" FMT, _wlr_strip_path(__FILE__), __LINE__, __func__, ##__VA_ARGS__) | ||||
| 
 | ||||
| void error_handler(int sig); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Scott Anderson
						Scott Anderson