We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d981f0 commit 9b58f3dCopy full SHA for 9b58f3d
src/vm/LogAllocation.cpp
@@ -7,13 +7,13 @@
7
std::map<std::string, struct alloc_data> allocationStats;
8
#endif
9
10
-void InitializeAllocationLog() {
+void InitializeAllocationLog() { // NOLINT(misc-use-internal-linkage)
11
#ifdef GENERATE_ALLOCATION_STATISTICS
12
allocationStats["VMArray"] = {0, 0};
13
14
}
15
16
-void OutputAllocationLogFile() {
+void OutputAllocationLogFile() { // NOLINT(misc-use-internal-linkage)
17
18
std::string file_name_allocation = std::string(bm_name);
19
file_name_allocation.append("_allocation_statistics.csv");
0 commit comments