You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mp...@apache.org on 2015/10/19 06:35:54 UTC

mesos git commit: Fixed typo in comment, minor style fixes.

Repository: mesos
Updated Branches:
  refs/heads/master f65af7a71 -> 5882d4a21


Fixed typo in comment, minor style fixes.

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


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

Branch: refs/heads/master
Commit: 5882d4a2189f954f093e824e5bf04f32a7954697
Parents: f65af7a
Author: Neil Conway <ne...@gmail.com>
Authored: Sun Oct 18 21:30:32 2015 -0700
Committer: Michael Park <mp...@apache.org>
Committed: Sun Oct 18 21:30:32 2015 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/owned.hpp   | 2 +-
 3rdparty/libprocess/src/tests/process_tests.cpp | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/5882d4a2/3rdparty/libprocess/include/process/owned.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/owned.hpp b/3rdparty/libprocess/include/process/owned.hpp
index bc5b527..17c4261 100644
--- a/3rdparty/libprocess/include/process/owned.hpp
+++ b/3rdparty/libprocess/include/process/owned.hpp
@@ -31,7 +31,7 @@ class Shared;
 // TODO(bmahler): For now, Owned only provides shared_ptr semantics.
 // When we make the switch to C++11, we will change to provide
 // unique_ptr semantics. Consequently, each usage of Owned that
-// invoked a copy will have to be adjusted to use move semantics.
+// invokes a copy will have to be adjusted to use move semantics.
 template <typename T>
 class Owned
 {

http://git-wip-us.apache.org/repos/asf/mesos/blob/5882d4a2/3rdparty/libprocess/src/tests/process_tests.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/process_tests.cpp b/3rdparty/libprocess/src/tests/process_tests.cpp
index e5277de..a3c57a2 100644
--- a/3rdparty/libprocess/src/tests/process_tests.cpp
+++ b/3rdparty/libprocess/src/tests/process_tests.cpp
@@ -21,8 +21,8 @@
 #include <netinet/in.h>
 #include <netinet/tcp.h>
 
-#include <string>
 #include <sstream>
+#include <string>
 #include <tuple>
 #include <vector>
 
@@ -51,8 +51,8 @@
 #include <stout/lambda.hpp>
 #include <stout/nothing.hpp>
 #include <stout/os.hpp>
-#include <stout/stringify.hpp>
 #include <stout/stopwatch.hpp>
+#include <stout/stringify.hpp>
 #include <stout/try.hpp>
 
 #include "encoder.hpp"