Skip to content

Commit

Permalink
Add std::move to ChannelHandleMap::maybeExpand()
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Jul 25, 2023
1 parent 66b768f commit 00780ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/channelhandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class ChannelHandleMap {
} else {
// We need to initialize simple types ourselves
while (m_data.size() < iSize) {
m_data.append({});
m_data.append(std::move(T{}));
}
}
}
Expand Down

0 comments on commit 00780ff

Please sign in to comment.