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 2016/01/27 01:01:06 UTC

mesos git commit: Cleaned up namespace-qualified identifiers.

Repository: mesos
Updated Branches:
  refs/heads/master 0f68135ab -> c58b1377b


Cleaned up namespace-qualified identifiers.

Review: https://reviews.apache.org/r/42821/


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

Branch: refs/heads/master
Commit: c58b1377b9fc27dbda9f5a89d2362361e4e149ac
Parents: 0f68135
Author: Alexander Rukletsov <ru...@gmail.com>
Authored: Tue Jan 26 16:00:39 2016 -0800
Committer: Joris Van Remoortere <jo...@gmail.com>
Committed: Tue Jan 26 16:00:45 2016 -0800

----------------------------------------------------------------------
 src/master/quota.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/c58b1377/src/master/quota.cpp
----------------------------------------------------------------------
diff --git a/src/master/quota.cpp b/src/master/quota.cpp
index cda0c1e..e7ce0f1 100644
--- a/src/master/quota.cpp
+++ b/src/master/quota.cpp
@@ -37,7 +37,7 @@ namespace internal {
 namespace master {
 namespace quota {
 
-UpdateQuota::UpdateQuota(const mesos::quota::QuotaInfo& quotaInfo)
+UpdateQuota::UpdateQuota(const QuotaInfo& quotaInfo)
   : info(quotaInfo) {}
 
 
@@ -61,7 +61,7 @@ Try<bool> UpdateQuota::perform(
 }
 
 
-RemoveQuota::RemoveQuota(const std::string& _role) : role(_role) {}
+RemoveQuota::RemoveQuota(const string& _role) : role(_role) {}
 
 
 Try<bool> RemoveQuota::perform(