Fix: ServerCallFactory's destructor not marked as virtual (#5185)

This commit is contained in:
Hao Chen
2019-07-13 09:38:47 +08:00
committed by Qing Wang
parent b6509f46b0
commit f5a87b88a3
+2
View File
@@ -83,6 +83,8 @@ class ServerCallFactory {
///
/// \return Pointer to the `ServerCall` object.
virtual ServerCall *CreateCall() const = 0;
virtual ~ServerCallFactory() = default;
};
/// Represents the generic signature of a `FooServiceHandler::HandleBar()`