Skip to content

Commit 63f8940

Browse files
Eugene Ostroukhovcopybara-github
authored andcommitted
[build]: Fix compilation error (grpc#39780)
Closes grpc#39780 COPYBARA_INTEGRATE_REVIEW=grpc#39780 from grpc:eugeneo-fix-compilation a0480dd PiperOrigin-RevId: 768176303
1 parent 53bc6c6 commit 63f8940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/ext/transport/chttp2/transport/message_assembler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class GrpcMessageAssembler {
100100
header.length, *(grpc_message->payload()));
101101
uint32_t& flag = grpc_message->mutable_flags();
102102
flag = header.flags;
103-
return grpc_message;
103+
return std::move(grpc_message);
104104
}
105105
return ReturnNullOrError();
106106
}

0 commit comments

Comments
 (0)