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 e6f241c commit 178a626Copy full SHA for 178a626
include/behaviortree_cpp_v3/blackboard.h
@@ -116,8 +116,8 @@ class Blackboard
116
template <typename T>
117
void set(const std::string& key, const T& value)
118
{
119
- std::unique_lock<std::mutex> lock(mutex_);
120
std::unique_lock<std::mutex> lock_entry(entry_mutex_);
+ std::unique_lock<std::mutex> lock(mutex_);
121
auto it = storage_.find(key);
122
123
if( auto parent = parent_bb_.lock())
0 commit comments