1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-05-26 03:30:06 +00:00

applets/swkbd: Make destructor virtual

Prevents undefined behavior when destroying a derived class through a
base class pointer.
This commit is contained in:
Lioncash 2020-05-01 10:44:28 -04:00
parent aeb6a037ed
commit 89eeb64854

@ -82,6 +82,8 @@ enum class ValidationError {
class SoftwareKeyboard {
public:
virtual ~SoftwareKeyboard() = default;
/**
* Executes the software keyboard, configured with the given parameters.
*/