mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-10-31 14:56:40 +08:00 
			
		
		
		
	gdbstub_arch: Add missing virtual destructor
The class is used polymorphically, so it's undefined behavior to delete instances of GDBStubA64 and GDBStubA32 from the base class pointer.
This commit is contained in:
		
							parent
							
								
									b94739cfa7
								
							
						
					
					
						commit
						80ad90651e
					
				| @ -15,6 +15,7 @@ namespace Core { | ||||
| 
 | ||||
| class GDBStubArch { | ||||
| public: | ||||
|     virtual ~GDBStubArch() = default; | ||||
|     virtual std::string GetTargetXML() const = 0; | ||||
|     virtual std::string RegRead(const Kernel::KThread* thread, size_t id) const = 0; | ||||
|     virtual void RegWrite(Kernel::KThread* thread, size_t id, std::string_view value) const = 0; | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user