summaryrefslogtreecommitdiffstats
path: root/core/os/memory.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-07-11 14:26:34 +0200
committerGitHub <noreply@github.com>2017-07-11 14:26:34 +0200
commit711ebafa710f9097d6e0d3dbfb5f4b39f6283701 (patch)
tree2606905904957cca602c76ae6581a6b9691dffc3 /core/os/memory.h
parent6758ba0d933a4f83e246b500639cbb99f0f0cacd (diff)
downloadredot-engine-711ebafa710f9097d6e0d3dbfb5f4b39f6283701.tar.gz
Revert "Improve reliability of memory stats"
Diffstat (limited to 'core/os/memory.h')
-rw-r--r--core/os/memory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/os/memory.h b/core/os/memory.h
index 8c3e26219a..b3eb599955 100644
--- a/core/os/memory.h
+++ b/core/os/memory.h
@@ -48,7 +48,8 @@ class Memory {
static size_t mem_usage;
static size_t max_usage;
#endif
- static uint64_t alloc_count;
+
+ static size_t alloc_count;
public:
static void *alloc_static(size_t p_bytes, bool p_pad_align = false);