Skip to content

Commit

Permalink
remove redundant std::move()
Browse files Browse the repository at this point in the history
Co-authored-by: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com>
  • Loading branch information
daschuer and Swiftb0y authored Aug 2, 2023
1 parent 6b99d4d commit 7092a7a
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(std::move(T()));
m_data.append(T());
}
}
}
Expand Down

0 comments on commit 7092a7a

Please sign in to comment.