You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by dm...@apache.org on 2014/12/01 21:05:00 UTC

mesos git commit: Fixed coding style issue in Node class

Repository: mesos
Updated Branches:
  refs/heads/master dc9cc6618 -> f6614b425


Fixed coding style issue in Node class

Removed the space between & and the parameter type

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


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

Branch: refs/heads/master
Commit: f6614b425a373a2ef975d70f55bd0d410849908d
Parents: dc9cc66
Author: Evelina Dumitrescu <ev...@gmail.com>
Authored: Mon Dec 1 12:04:14 2014 -0800
Committer: Dominic Hamon <dh...@twitter.com>
Committed: Mon Dec 1 12:04:38 2014 -0800

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/node.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/f6614b42/3rdparty/libprocess/include/process/node.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/node.hpp b/3rdparty/libprocess/include/process/node.hpp
index 24132a5..eb48c54 100644
--- a/3rdparty/libprocess/include/process/node.hpp
+++ b/3rdparty/libprocess/include/process/node.hpp
@@ -41,7 +41,7 @@ public:
   uint16_t port;
 };
 
-inline std::ostream& operator << (std::ostream & stream, const Node & node)
+inline std::ostream& operator << (std::ostream& stream, const Node& node)
 {
   char ip[INET_ADDRSTRLEN];
   if (inet_ntop(AF_INET, (in_addr*) &node.ip, ip, INET_ADDRSTRLEN) == NULL) {