This is an automated email from the ASF dual-hosted git repository. josephwu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit b6e00ddf9cdc97fd0d8c27f2d337ef4c77d2b550 Author: Joseph Wu <[email protected]> AuthorDate: Mon Oct 29 16:06:55 2018 -0700 Removed extraneous 'virtual' keyword. --- src/examples/inverse_offer_framework.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/inverse_offer_framework.cpp b/src/examples/inverse_offer_framework.cpp index 0e43492..360d6c6 100644 --- a/src/examples/inverse_offer_framework.cpp +++ b/src/examples/inverse_offer_framework.cpp @@ -110,7 +110,7 @@ public: ~InverseOfferScheduler() override {} protected: - virtual void initialize() override + void initialize() override { // We initialize the library here to ensure that callbacks are only invoked // after the process has spawned.
