Skip to content

Commit 0dd270a

Browse files
committed
Move <algorithm> inside memory_tracker.cpp
1 parent fa5d329 commit 0dd270a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/memory_tracker.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#include "memory_tracker.hpp"
22

3+
#include <algorithm>
34
#include <cstdio>
5+
#include <stdexcept>
46

57
void* allocations[max_allocations];
68
void* allocations_array[max_allocations];

tests/memory_tracker.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#include <algorithm>
21
#include <cstdlib>
32

43
// Allocation tracker, to catch memory leaks and double delete

0 commit comments

Comments
 (0)