You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2015/07/31 01:36:51 UTC

mesos git commit: Style change: Space after the "..." in variadic templates.

Repository: mesos
Updated Branches:
  refs/heads/master f880b38f2 -> 1c3c17414


Style change: Space after the "..." in variadic templates.

There are a few instances of `typename...` and `typename ...` in the
code base.  This patch normalizes those to just `typename...`.

Review: https://reviews.apache.org/r/36865


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1c3c1741
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/1c3c1741
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/1c3c1741

Branch: refs/heads/master
Commit: 1c3c1741497ed9ee771a3fbb57959d6a1908c865
Parents: f880b38
Author: Joseph Wu <jo...@mesosphere.io>
Authored: Thu Jul 30 16:30:36 2015 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Thu Jul 30 16:30:36 2015 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/help.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/1c3c1741/3rdparty/libprocess/include/process/help.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/help.hpp b/3rdparty/libprocess/include/process/help.hpp
index 316ed21..441f6d1 100644
--- a/3rdparty/libprocess/include/process/help.hpp
+++ b/3rdparty/libprocess/include/process/help.hpp
@@ -67,14 +67,14 @@ inline std::string USAGE(const std::string& usage)
 }
 
 
-template <typename ...T>
+template <typename... T>
 inline std::string DESCRIPTION(T&&... args)
 {
   return strings::join("\n", std::forward<T>(args)..., "\n");
 }
 
 
-template <typename ...T>
+template <typename... T>
 inline std::string REFERENCES(T&&... args)
 {
   return strings::join("\n", std::forward<T>(args)..., "\n");