Skip to content

Commit 00dd7ba

Browse files
authored
Merge pull request #441 from jan-moravec/bugfix/add-missing-headers-in-lightweightsemaphore
Add Missing Headers in lightweightsemaphore.h
2 parents 8a40b50 + 97a94cb commit 00dd7ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lightweightsemaphore.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@
55

66
#pragma once
77

8-
#include <cstddef> // For std::size_t
98
#include <atomic>
9+
#include <cassert> // assert
10+
#include <cerrno> // For EINTR
11+
#include <cstddef> // For std::size_t
12+
#include <cstdint> // For std::uint64_t
13+
#include <ctime> // For clock_gettime
1014
#include <type_traits> // For std::make_signed<T>
1115

1216
#if defined(_WIN32)

0 commit comments

Comments
 (0)