mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +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
							
								
									db96034ea4
								
							
						
					
					
						commit
						d09456fc41
					
				@ -21,7 +21,7 @@ namespace Common {
 | 
				
			|||||||
DynamicLibrary::DynamicLibrary() = default;
 | 
					DynamicLibrary::DynamicLibrary() = default;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DynamicLibrary::DynamicLibrary(const char* filename) {
 | 
					DynamicLibrary::DynamicLibrary(const char* filename) {
 | 
				
			||||||
    Open(filename);
 | 
					    void(Open(filename));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DynamicLibrary::DynamicLibrary(DynamicLibrary&& rhs) noexcept
 | 
					DynamicLibrary::DynamicLibrary(DynamicLibrary&& rhs) noexcept
 | 
				
			||||||
 | 
				
			|||||||
@ -902,10 +902,10 @@ 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) {
 | 
				
			||||||
    Open(filename, openmode, flags);
 | 
					    void(Open(filename, openmode, flags));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
IOFile::~IOFile() {
 | 
					IOFile::~IOFile() {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user