1
0
Fork 0

remove duplicate allocation

This commit is contained in:
Kevin Matz 2023-05-15 11:21:49 -04:00
parent 4fd1c4de29
commit ac1c5d64d7
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ void Receiver::dispatch(const std::shared_ptr<Message> msg) const
std::istringstream strm(msg->address_pattern);
strm.seekg(1); // skip leading '/'
for (std::string name; std::getline(strm, name, '/');)
patterns.emplace_back(std::string(name));
patterns.push_back(name);
address_space_->dispatch(patterns, msg);
}
break;