[instancer] fix delta_row_encoding_t constructor

always move chars_
This commit is contained in:
Qunxin Liu 2023-09-20 09:31:03 -07:00 committed by Behdad Esfahbod
parent 005582e0cb
commit 5ec21d4af4

View file

@ -2317,7 +2317,7 @@ struct delta_row_encoding_t
delta_row_encoding_t ()
{
chars = chars_;
chars = std::move (chars_);
width = get_width ();
columns = get_columns ();
overhead = get_chars_overhead (columns);