fix clang-tidy issue

This commit is contained in:
DavIvek 2024-02-29 17:16:28 +01:00
parent 92e6c323c8
commit 0c734c91a5

View File

@ -3330,7 +3330,7 @@ RemoveLabels::RemoveLabels(const std::shared_ptr<LogicalOperator> &input, Symbol
: input_(input), input_symbol_(std::move(input_symbol)) {
labels_.reserve(labels.size());
for (const auto &label : labels) {
labels_.push_back(label);
labels_.emplace_back(label);
}
}