Skip to content

Commit 122f9fe

Browse files
committed
Fix clang-tidy lint
1 parent 4c2ad4d commit 122f9fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/Ice/filesystem/Memory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ MDirectory::list(const Ice::Current&)
5252
void
5353
MDirectory::addChild(Filesystem::NodePrx child)
5454
{
55-
_contents.push_back(std::move(child));
55+
_contents.emplace_back(std::move(child));
5656
}

0 commit comments

Comments
 (0)