1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move physical memory size getter to a separate source file.

This commit is contained in:
Bartosz Taudul
2024-05-04 16:45:21 +02:00
parent fee5982abd
commit 66a32de0f7
5 changed files with 60 additions and 39 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef __TRACYSYSUTIL_HPP__
#define __TRACYSYSUTIL_HPP__
#include <stdlib.h>
namespace tracy
{
size_t GetPhysicalMemorySize();
}
#endif