Skip to content

Commit 1994243

Browse files
committed
fix: semaphore() noexcept is implicitly deleted
1 parent cd4b283 commit 1994243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libipc/platform/semaphore_linux.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class semaphore {
2020
sem_t *h_ = SEM_FAILED;
2121

2222
public:
23-
semaphore() noexcept = default;
23+
semaphore() = default;
2424
~semaphore() noexcept = default;
2525

2626
sem_t *native() const noexcept {

0 commit comments

Comments
 (0)