Skip to content

Commit

Permalink
Fix clang-tidy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Feb 9, 2025
1 parent 4c2ad4d commit 122f9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/Ice/filesystem/Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ MDirectory::list(const Ice::Current&)
void
MDirectory::addChild(Filesystem::NodePrx child)
{
_contents.push_back(std::move(child));
_contents.emplace_back(std::move(child));
}

0 comments on commit 122f9fe

Please sign in to comment.