fix CallData::CallStatus

This commit is contained in:
Erwin Coumans
2019-05-06 17:30:07 -07:00
parent 688df2c60b
commit e6918b9cd4

View File

@@ -206,7 +206,7 @@ private:
{
GPR_ASSERT(status_ == FINISH);
// Once in the FINISH state, deallocate ourselves (CallData).
CallData tmpStatus = status_;
CallData::CallStatus tmpStatus = status_;
delete this;
return tmpStatus;
}