Skip to content

Commit 9b58f3d

Browse files
committed
Disable lint for two functions that are actually used
Signed-off-by: Stefan Marr <git@stefan-marr.de>
1 parent 0d981f0 commit 9b58f3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vm/LogAllocation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
std::map<std::string, struct alloc_data> allocationStats;
88
#endif
99

10-
void InitializeAllocationLog() {
10+
void InitializeAllocationLog() { // NOLINT(misc-use-internal-linkage)
1111
#ifdef GENERATE_ALLOCATION_STATISTICS
1212
allocationStats["VMArray"] = {0, 0};
1313
#endif
1414
}
1515

16-
void OutputAllocationLogFile() {
16+
void OutputAllocationLogFile() { // NOLINT(misc-use-internal-linkage)
1717
#ifdef GENERATE_ALLOCATION_STATISTICS
1818
std::string file_name_allocation = std::string(bm_name);
1919
file_name_allocation.append("_allocation_statistics.csv");

0 commit comments

Comments
 (0)