mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	archive: Fix initializer list order for the File class.
This commit is contained in:
		
							parent
							
								
									0c53cc52bd
								
							
						
					
					
						commit
						551264f815
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -89,7 +89,7 @@ public:
 | 
			
		|||
class File : public Kernel::Session {
 | 
			
		||||
public:
 | 
			
		||||
    File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path)
 | 
			
		||||
            : path(path), backend(std::move(backend)), priority(0) {
 | 
			
		||||
            : path(path), priority(0), backend(std::move(backend)) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    std::string GetName() const override { return "Path: " + path.DebugStr(); }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue