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 025311d commit 8054906Copy full SHA for 8054906
src/libipc/platform/linux/mutex.h
@@ -126,9 +126,9 @@ class mutex {
126
auto it = info.mutex_handles.find(name);
127
if (it == info.mutex_handles.end()) {
128
it = info.mutex_handles
129
- .emplace(
130
- std::piecewise_construct, std::forward_as_tuple(name),
131
- std::forward_as_tuple(curr_prog::shm_data::init{name}))
+ .emplace(std::piecewise_construct,
+ std::forward_as_tuple(name),
+ std::forward_as_tuple(curr_prog::shm_data::init{name}))
132
.first;
133
}
134
mutex_ = &it->second.mtx;
0 commit comments