We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b719fb7 commit ee65bb0Copy full SHA for ee65bb0
Common/Cpp/MemoryUtilization/MemoryUtilization.cpp
@@ -18,10 +18,14 @@
18
#elif __linux
19
#include "MemoryUtilization_Linux.tpp"
20
21
+#else
22
+
23
namespace PokemonAutomation{
24
MemoryUsage process_memory_usage(){
25
+ return MemoryUsage{};
26
}
27
28
29
#endif
30
31
Common/Cpp/MemoryUtilization/MemoryUtilization_Linux.tpp
@@ -7,6 +7,7 @@
7
#ifndef PokemonAutomation_MemoryUtilization_Linux_TPP
8
#define PokemonAutomation_MemoryUtilization_Linux_TPP
9
10
+#include <stdint.h>
11
#include <utility>
12
#include <string>
13
#include <fstream>
0 commit comments