We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6111722 commit 7981a1cCopy full SHA for 7981a1c
.gitignore
@@ -28,6 +28,7 @@ ui_*.h
28
*.jsc
29
Makefile*
30
*build-*
31
+*build_*
32
33
# Qt unit tests
34
target_wrapper.*
src/libipc/waiter.h
@@ -64,12 +64,16 @@ class waiter {
64
}
65
66
bool notify() noexcept {
67
- std::lock_guard<ipc::sync::mutex>{lock_}; // barrier
+ {
68
+ IPC_UNUSED_ std::lock_guard<ipc::sync::mutex> barrier{lock_}; // barrier
69
+ }
70
return cond_.notify(lock_);
71
72
73
bool broadcast() noexcept {
74
75
76
77
return cond_.broadcast(lock_);
78
79
0 commit comments