You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2016/02/12 11:20:13 UTC

[3/5] mesos git commit: Used size_t for consistency in stout/strings.hpp.

Used size_t for consistency in stout/strings.hpp.


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

Branch: refs/heads/master
Commit: 66ddbc7495d923845590e89f423cf16b8e8a2e11
Parents: d990a8a
Author: Benjamin Mahler <be...@gmail.com>
Authored: Thu Feb 11 11:12:21 2016 +0100
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Fri Feb 12 10:33:28 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/66ddbc74/3rdparty/libprocess/3rdparty/stout/include/stout/strings.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/strings.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/strings.hpp
index c20e2ff..1309a18 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/strings.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/strings.hpp
@@ -169,7 +169,7 @@ inline std::vector<std::string> tokenize(
 inline std::vector<std::string> split(
     const std::string& s,
     const std::string& delims,
-    const Option<unsigned int>& n = None())
+    const Option<size_t>& n = None())
 {
   std::vector<std::string> tokens;
   size_t offset = 0;