You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2015/06/05 00:23:13 UTC

mesos git commit: Fixed the compiler warning about unused private members.

Repository: mesos
Updated Branches:
  refs/heads/master cca1972ac -> 9e23a3e6f


Fixed the compiler warning about unused private members.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9e23a3e6
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/9e23a3e6
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/9e23a3e6

Branch: refs/heads/master
Commit: 9e23a3e6fa3bae9c2af50cc3ffdf5893659cd102
Parents: cca1972
Author: Jie Yu <yu...@gmail.com>
Authored: Thu Jun 4 15:22:41 2015 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Thu Jun 4 15:23:04 2015 -0700

----------------------------------------------------------------------
 src/slave/resource_estimators/fixed.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/9e23a3e6/src/slave/resource_estimators/fixed.cpp
----------------------------------------------------------------------
diff --git a/src/slave/resource_estimators/fixed.cpp b/src/slave/resource_estimators/fixed.cpp
index fb7bb18..3efa18d 100644
--- a/src/slave/resource_estimators/fixed.cpp
+++ b/src/slave/resource_estimators/fixed.cpp
@@ -56,7 +56,7 @@ public:
     return resources;
   }
 
-private:
+protected:
   const lambda::function<Future<list<ResourceUsage>>()>& usages;
   const Resources resources;
 };