Reverted changes to 'operator,' to satisfy 'support/mesos-style.py'.
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/56413252 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/56413252 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/56413252 Branch: refs/heads/master Commit: 56413252a4df90f743069f107154f07069282313 Parents: ad799ce Author: Michael Park <[email protected]> Authored: Sun Aug 9 20:49:37 2015 -0400 Committer: Michael Park <[email protected]> Committed: Sun Aug 9 20:58:27 2015 -0400 ---------------------------------------------------------------------- 3rdparty/libprocess/3rdparty/stout/include/stout/interval.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/56413252/3rdparty/libprocess/3rdparty/stout/include/stout/interval.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/interval.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/interval.hpp index c4cf01a..d207dc5 100644 --- a/3rdparty/libprocess/3rdparty/stout/include/stout/interval.hpp +++ b/3rdparty/libprocess/3rdparty/stout/include/stout/interval.hpp @@ -54,7 +54,7 @@ public: // (3, 4]: (Bound<int>::open(3), Bound<int>::closed(4)) // [0, 5): (Bound<int>::closed(0), Bound<int>::open(5)) // [1, 2]: (Bound<int>::closed(1), Bound<int>::closed(2)) - Interval<T> operator,(const Bound<T>& right) const; + Interval<T> operator , (const Bound<T>& right) const; private: enum Type @@ -128,7 +128,7 @@ std::ostream& operator<<(std::ostream& stream, const Interval<T>& interval) template <typename T> -Interval<T> Bound<T>::operator,(const Bound<T>& right) const +Interval<T> Bound<T>::operator , (const Bound<T>& right) const { if (type == OPEN) { if (right.type == OPEN) {
