libprocess: Replaced instances of 'std::size_t' with 'size_t'.
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5408b16f Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5408b16f Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5408b16f Branch: refs/heads/master Commit: 5408b16f59e85b750c173be39d12a941e4a5e7e3 Parents: 0e6bb2c Author: Michael Park <[email protected]> Authored: Thu Aug 27 22:02:39 2015 -0400 Committer: Michael Park <[email protected]> Committed: Thu Aug 27 22:02:39 2015 -0400 ---------------------------------------------------------------------- 3rdparty/libprocess/include/process/address.hpp | 2 +- 3rdparty/libprocess/include/process/pid.hpp | 2 +- 3rdparty/libprocess/src/pid.cpp | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/5408b16f/3rdparty/libprocess/include/process/address.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/include/process/address.hpp b/3rdparty/libprocess/include/process/address.hpp index e0fa179..bf230ac 100644 --- a/3rdparty/libprocess/include/process/address.hpp +++ b/3rdparty/libprocess/include/process/address.hpp @@ -150,7 +150,7 @@ namespace std { template <> struct hash<process::network::Address> { - typedef std::size_t result_type; + typedef size_t result_type; typedef process::network::Address argument_type; http://git-wip-us.apache.org/repos/asf/mesos/blob/5408b16f/3rdparty/libprocess/include/process/pid.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/include/process/pid.hpp b/3rdparty/libprocess/include/process/pid.hpp index 2986e85..e87cfca 100644 --- a/3rdparty/libprocess/include/process/pid.hpp +++ b/3rdparty/libprocess/include/process/pid.hpp @@ -159,7 +159,7 @@ namespace std { template <> struct hash<process::UPID> { - typedef std::size_t result_type; + typedef size_t result_type; typedef process::UPID argument_type; http://git-wip-us.apache.org/repos/asf/mesos/blob/5408b16f/3rdparty/libprocess/src/pid.cpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/src/pid.cpp b/3rdparty/libprocess/src/pid.cpp index a1731ae..9887d83 100644 --- a/3rdparty/libprocess/src/pid.cpp +++ b/3rdparty/libprocess/src/pid.cpp @@ -36,7 +36,6 @@ using std::istream; using std::ostream; -using std::size_t; using std::string;
