Repository: mesos Updated Branches: refs/heads/master 5ff1b45d7 -> fd7376d95
Remove incorrect usage of 'intensive purposes'. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/fd7376d9 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/fd7376d9 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/fd7376d9 Branch: refs/heads/master Commit: fd7376d9577a0106b77d64cc9ca23d7f49b79fa4 Parents: 5ff1b45 Author: Ian Downes <[email protected]> Authored: Fri May 22 11:15:32 2015 -0700 Committer: Ian Downes <[email protected]> Committed: Fri May 22 11:15:32 2015 -0700 ---------------------------------------------------------------------- .../libprocess/3rdparty/stout/include/stout/hashmap.hpp | 9 ++++----- .../libprocess/3rdparty/stout/include/stout/hashset.hpp | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/fd7376d9/3rdparty/libprocess/3rdparty/stout/include/stout/hashmap.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/hashmap.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/hashmap.hpp index 24dc369..215007b 100644 --- a/3rdparty/libprocess/3rdparty/stout/include/stout/hashmap.hpp +++ b/3rdparty/libprocess/3rdparty/stout/include/stout/hashmap.hpp @@ -25,11 +25,10 @@ #include "option.hpp" -// Provides a hash map via Boost's 'unordered_map'. For most intensive -// purposes this could be accomplished with a templated typedef, but -// those don't exist (until C++-11). Also, doing it this way allows us -// to add functionality, or better naming of existing functionality, -// etc. +// Provides a hash map via Boost's 'unordered_map'. For most purposes +// this could be accomplished with a templated typedef, but those +// don't exist (until C++-11). Also, doing it this way allows us to +// add functionality, or better naming of existing functionality, etc. template <typename Key, typename Value> class hashmap : public boost::unordered_map<Key, Value> http://git-wip-us.apache.org/repos/asf/mesos/blob/fd7376d9/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp index 21b0599..75ed9db 100644 --- a/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp +++ b/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp @@ -20,11 +20,10 @@ #include "foreach.hpp" -// Provides a hash set via Boost's 'unordered_set'. For most intensive -// purposes this could be accomplished with a templated typedef, but -// those don't exist (until C++-11). Also, doing it this way allows us -// to add functionality, or better naming of existing functionality, -// etc. +// Provides a hash set via Boost's 'unordered_set'. For most purposes +// this could be accomplished with a templated typedef, but those +// don't exist (until C++-11). Also, doing it this way allows us to +// add functionality, or better naming of existing functionality, etc. template <typename Elem> class hashset : public boost::unordered_set<Elem>
