mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	text_formatter: Avoid unnecessary string temporary creation in PrintMessage()
operator+ for std::string creates an entirely new string, which is kind of unnecessary here if we just want to append a null terminator to the existing one. Reduces the total amount of potential allocations that need to be done in the logging path.
This commit is contained in:
		
							parent
							
								
									b4b8c58f91
								
							
						
					
					
						commit
						cd7596e67e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -31,7 +31,7 @@ std::string FormatLogMessage(const Entry& entry) { | |||
| } | ||||
| 
 | ||||
| void PrintMessage(const Entry& entry) { | ||||
|     auto str = FormatLogMessage(entry) + '\n'; | ||||
|     const auto str = FormatLogMessage(entry).append(1, '\n'); | ||||
|     fputs(str.c_str(), stderr); | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue