mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	common: Silence two discarded result warnings
These are intentionally discarded internally, since the rest of the public API allows querying success. We want all non-internal uses of these functions to be explicitly checked, so we can signify that we intentionally want to discard the return values here.
This commit is contained in:
		
							parent
							
								
									f72be7af2d
								
							
						
					
					
						commit
						41f42d8df3
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -915,11 +915,11 @@ std::string SanitizePath(std::string_view path_, DirectorySeparator directory_se | ||||||
|     return std::string(RemoveTrailingSlash(path)); |     return std::string(RemoveTrailingSlash(path)); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| IOFile::IOFile() {} | IOFile::IOFile() = default; | ||||||
| 
 | 
 | ||||||
| IOFile::IOFile(const std::string& filename, const char openmode[], int flags) | IOFile::IOFile(const std::string& filename, const char openmode[], int flags) | ||||||
|     : filename(filename), openmode(openmode), flags(flags) { |     : filename(filename), openmode(openmode), flags(flags) { | ||||||
|     Open(); |     void(Open()); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| IOFile::~IOFile() { | IOFile::~IOFile() { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue