You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2018/10/30 19:19:26 UTC

[mesos] 01/03: Removed extraneous 'virtual' keyword.

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 <jo...@apache.org>
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.