Skip to content

Commit e8bea17

Browse files
committed
Added missing includes for libc++ and MSVC
1 parent 47e270d commit e8bea17

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tests/memory_tracker.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cstdlib>
2+
#include <new>
23

34
// Allocation tracker, to catch memory leaks and double delete
45
constexpr std::size_t max_allocations = 20'000;

tests/runtime_tests_lifetime.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "testing.hpp"
33
#include "tests_common.hpp"
44

5+
#include <algorithm>
56
#include <vector>
67

78
TEMPLATE_LIST_TEST_CASE("observer expiring scope", "[lifetime][owner][observer]", owner_types) {

0 commit comments

Comments
 (0)