diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-25 20:55:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 20:55:30 +0200 |
commit | ce78d280b39e1e6d0cd700ff10a512acdfaf4282 (patch) | |
tree | 43fca635ffe4fc673dd95dd857d2e736b792517a /core/os | |
parent | f03ac21ea8bf04b5ac0243706facdbde45ba7385 (diff) | |
parent | 465c423abb72dfe95007e0eba13032a71fe63cff (diff) |
Merge pull request #58530 from Calinou/os-remove-dump-memory-to-file
Remove unimplemented `OS.dump_memory_to_file()` method
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.cpp | 4 | ||||
-rw-r--r-- | core/os/os.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 6091079241..45cd7109e2 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -186,10 +186,6 @@ void OS::set_stderr_enabled(bool p_enabled) { _stderr_enabled = p_enabled; } -void OS::dump_memory_to_file(const char *p_file) { - //Memory::dump_static_mem_to_file(p_file); -} - static Ref<FileAccess> _OSPRF; static void _OS_printres(Object *p_obj) { diff --git a/core/os/os.h b/core/os/os.h index be9d73c22d..ff769cc4f1 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -246,7 +246,6 @@ public: virtual bool is_disable_crash_handler() const { return false; } virtual void initialize_debugging() {} - virtual void dump_memory_to_file(const char *p_file); virtual void dump_resources_to_file(const char *p_file); virtual void print_resources_in_use(bool p_short = false); virtual void print_all_resources(String p_to_file = ""); |