diff options
author | David Snopek <dsnopek@gmail.com> | 2024-05-10 12:07:21 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-05-10 13:17:36 -0500 |
commit | 14506a4282b6b9079280ec54f50f46ba041c0d10 (patch) | |
tree | 566585e6fc1bd30b155414cc87b7d476b295c691 /core/config/engine.h | |
parent | 2ba22d1554ded08094e3869a83bd87487266ad38 (diff) | |
download | redot-engine-14506a4282b6b9079280ec54f50f46ba041c0d10.tar.gz |
GDExtension: Prevent crash during shutdown as singletons are deleted
Diffstat (limited to 'core/config/engine.h')
-rw-r--r-- | core/config/engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/config/engine.h b/core/config/engine.h index 8dece803e3..7e617d8773 100644 --- a/core/config/engine.h +++ b/core/config/engine.h @@ -187,7 +187,7 @@ public: bool notify_frame_server_synced(); Engine(); - virtual ~Engine() {} + virtual ~Engine(); }; #endif // ENGINE_H |