Commit ca0e85ce authored by Kenton Varda's avatar Kenton Varda

Fix C++14 build.

parent 3ef62d15
......@@ -1641,6 +1641,10 @@ private:
struct SetupSendResult: public SendInternalResult {
QuestionId questionId;
Question& question;
SetupSendResult(SendInternalResult&& super, QuestionId questionId, Question& question)
: SendInternalResult(kj::mv(super)), questionId(questionId), question(question) {}
// TODO(cleanup): This constructor is implicit in C++17.
};
SetupSendResult setupSend(bool isTailCall) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment