Repository: mesos Updated Branches: refs/heads/master d5264b72d -> a7d2cc369
Fixed a style issue in <stout/hashset.hpp>. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a7d2cc36 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/a7d2cc36 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/a7d2cc36 Branch: refs/heads/master Commit: a7d2cc36966faa5b5b1769a7b8ebd98b10a02962 Parents: d5264b7 Author: Michael Park <[email protected]> Authored: Wed Aug 5 22:47:33 2015 -0700 Committer: Michael Park <[email protected]> Committed: Wed Aug 5 22:47:33 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/a7d2cc36/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 faae1aa..e969b09 100644 --- a/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp +++ b/3rdparty/libprocess/3rdparty/stout/include/stout/hashset.hpp @@ -44,7 +44,7 @@ public: // // TODO(arojas): Allow any arbitrary type that supports 'begin()' // and 'end()' passed into the specified 'emplace'? - hashset(const std::set<Elem> &set) + hashset(const std::set<Elem>& set) { boost::unordered_set<Elem, Hash, Equal>::reserve(set.size());
