Skip to content

Commit 367958f

Browse files
authored
removed excess std::move
1 parent 5eea214 commit 367958f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clickhouse/columns/string.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ ColumnRef ColumnFixedString::Slice(size_t begin, size_t len) {
9595
result->data_ = data_.substr(b, std::min(data_.size() - b, l));
9696
}
9797

98-
return std::move(result);
98+
return result;
9999
}
100100

101101
struct ColumnString::Block

0 commit comments

Comments
 (0)