Removed a stray return statement, causing compilation error.

This commit is contained in:
Manjunath Kudlur 2017-03-06 15:50:26 -08:00
parent 06f9f609e1
commit 21b58b51fe

View file

@ -1487,7 +1487,6 @@ inline void RepeatedPtrFieldBase::Add(
typename TypeHandler::Type* result =
TypeHandler::New(arena_, std::move(value));
rep_->elements[current_size_++] = result;
return result;
}
#endif