mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 02:34:11 +01:00 
			
		
		
		
	Merge pull request #8586 from merryhime/KCodeMemory-override
KCodeMemory: Mark virtual methods as override
This commit is contained in:
		
						commit
						037ce7cb5f
					
				| @ -30,19 +30,19 @@ public: | ||||
|     explicit KCodeMemory(KernelCore& kernel_); | ||||
| 
 | ||||
|     Result Initialize(Core::DeviceMemory& device_memory, VAddr address, size_t size); | ||||
|     void Finalize(); | ||||
|     void Finalize() override; | ||||
| 
 | ||||
|     Result Map(VAddr address, size_t size); | ||||
|     Result Unmap(VAddr address, size_t size); | ||||
|     Result MapToOwner(VAddr address, size_t size, Svc::MemoryPermission perm); | ||||
|     Result UnmapFromOwner(VAddr address, size_t size); | ||||
| 
 | ||||
|     bool IsInitialized() const { | ||||
|     bool IsInitialized() const override { | ||||
|         return m_is_initialized; | ||||
|     } | ||||
|     static void PostDestroy([[maybe_unused]] uintptr_t arg) {} | ||||
| 
 | ||||
|     KProcess* GetOwner() const { | ||||
|     KProcess* GetOwner() const override { | ||||
|         return m_owner; | ||||
|     } | ||||
|     VAddr GetSourceAddress() const { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user