mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	Update fmtlib to fix msvc warnings
Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different
This commit is contained in:
		
							parent
							
								
									a2e87075c5
								
							
						
					
					
						commit
						501717e9db
					
				
					 3 changed files with 9 additions and 6 deletions
				
			
		|  | @ -153,8 +153,9 @@ void LogMessage(Class log_class, Level log_level, const char* filename, unsigned | |||
|     PrintColoredMessage(entry); | ||||
| } | ||||
| 
 | ||||
| void LogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, | ||||
|                 const char* function, const char* format, const fmt::format_args& args) { | ||||
| void FmtLogMessageImpl(Class log_class, Level log_level, const char* filename, | ||||
|                        unsigned int line_num, const char* function, const char* format, | ||||
|                        const fmt::format_args& args) { | ||||
|     if (filter && !filter->CheckMessage(log_class, log_level)) | ||||
|         return; | ||||
|     Entry entry = | ||||
|  |  | |||
|  | @ -112,13 +112,15 @@ void LogMessage(Class log_class, Level log_level, const char* filename, unsigned | |||
|     ; | ||||
| 
 | ||||
| /// Logs a message to the global logger, using fmt
 | ||||
| void LogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, | ||||
|                 const char* function, const char* format, const fmt::format_args& args); | ||||
| void FmtLogMessageImpl(Class log_class, Level log_level, const char* filename, | ||||
|                        unsigned int line_num, const char* function, const char* format, | ||||
|                        const fmt::format_args& args); | ||||
| 
 | ||||
| template <typename... Args> | ||||
| void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, | ||||
|                    const char* function, const char* format, const Args&... args) { | ||||
|     LogMessage(log_class, log_level, filename, line_num, function, format, fmt::make_args(args...)); | ||||
|     FmtLogMessageImpl(log_class, log_level, filename, line_num, function, format, | ||||
|                       fmt::make_args(args...)); | ||||
| } | ||||
| 
 | ||||
| } // namespace Log
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue