Repository: mesos Updated Branches: refs/heads/master 9ab950d38 -> cc8610be4
Fixed inconsistent naming in index sequence. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/cc8610be Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/cc8610be Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/cc8610be Branch: refs/heads/master Commit: cc8610be4a40fc9c3a6010aecfc873b1831fc5be Parents: 9ab950d Author: Michael Park <[email protected]> Authored: Fri Dec 1 07:21:14 2017 -0800 Committer: Michael Park <[email protected]> Committed: Fri Dec 1 07:21:42 2017 -0800 ---------------------------------------------------------------------- 3rdparty/stout/include/stout/cpp14.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/cc8610be/3rdparty/stout/include/stout/cpp14.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/stout/include/stout/cpp14.hpp b/3rdparty/stout/include/stout/cpp14.hpp index 95dfc92..531d7f7 100644 --- a/3rdparty/stout/include/stout/cpp14.hpp +++ b/3rdparty/stout/include/stout/cpp14.hpp @@ -36,8 +36,8 @@ struct integer_sequence namespace internal { -template <typename T, std::size_t N, std::size_t... S> -struct IntegerSequenceGen : IntegerSequenceGen<T, N - 1, N - 1, S...> {}; +template <typename T, std::size_t N, std::size_t... Is> +struct IntegerSequenceGen : IntegerSequenceGen<T, N - 1, N - 1, Is...> {}; template <typename T, std::size_t... Is>
