You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by tn...@apache.org on 2015/09/15 23:11:25 UTC

mesos git commit: Fix 'operator=' spacing in the registry_client.

Repository: mesos
Updated Branches:
  refs/heads/master e601e469c -> e197336e6


Fix 'operator=' spacing in the registry_client.

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


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

Branch: refs/heads/master
Commit: e197336e60bc1764da5cd12ddfe35df80508f1b7
Parents: e601e46
Author: Guangya Liu <gy...@gmail.com>
Authored: Tue Sep 15 13:45:53 2015 -0700
Committer: Timothy Chen <tn...@apache.org>
Committed: Tue Sep 15 13:45:53 2015 -0700

----------------------------------------------------------------------
 src/slave/containerizer/provisioners/docker/registry_client.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/e197336e/src/slave/containerizer/provisioners/docker/registry_client.hpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/provisioners/docker/registry_client.hpp b/src/slave/containerizer/provisioners/docker/registry_client.hpp
index b5e2858..3ec3741 100644
--- a/src/slave/containerizer/provisioners/docker/registry_client.hpp
+++ b/src/slave/containerizer/provisioners/docker/registry_client.hpp
@@ -151,7 +151,7 @@ private:
   process::Owned<RegistryClientProcess> process_;
 
   RegistryClient(const RegistryClient&) = delete;
-  RegistryClient& operator = (const RegistryClient&) = delete;
+  RegistryClient& operator=(const RegistryClient&) = delete;
 };
 
 } // namespace registry {