You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2015/05/09 00:00:43 UTC

mesos git commit: Fixed style error with template definitions within common/parse.hpp.

Repository: mesos
Updated Branches:
  refs/heads/master 72c1fb3c2 -> 07fcee234


Fixed style error with template definitions within common/parse.hpp.

Replaces every instance of `template<>` with `template <>` in
src/common/parse.hpp.

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


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

Branch: refs/heads/master
Commit: 07fcee234642a16a2ea17cfd44b166bd430cc5e4
Parents: 72c1fb3
Author: Alexander Rojas <al...@mesosphere.io>
Authored: Fri May 8 14:53:45 2015 -0700
Committer: Till Toenshoff <to...@me.com>
Committed: Fri May 8 14:53:45 2015 -0700

----------------------------------------------------------------------
 src/common/parse.hpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/07fcee23/src/common/parse.hpp
----------------------------------------------------------------------
diff --git a/src/common/parse.hpp b/src/common/parse.hpp
index 547b320..487180c 100644
--- a/src/common/parse.hpp
+++ b/src/common/parse.hpp
@@ -29,7 +29,7 @@
 
 namespace flags {
 
-template<>
+template <>
 inline Try<mesos::ACLs> parse(const std::string& value)
 {
   // Convert from string or file to JSON.
@@ -43,7 +43,7 @@ inline Try<mesos::ACLs> parse(const std::string& value)
 }
 
 
-template<>
+template <>
 inline Try<mesos::RateLimits> parse(const std::string& value)
 {
   // Convert from string or file to JSON.
@@ -57,7 +57,7 @@ inline Try<mesos::RateLimits> parse(const std::string& value)
 }
 
 
-template<>
+template <>
 inline Try<mesos::Modules> parse(const std::string& value)
 {
   // Convert from string or file to JSON.
@@ -71,7 +71,7 @@ inline Try<mesos::Modules> parse(const std::string& value)
 }
 
 
-template<>
+template <>
 inline Try<mesos::ContainerInfo> parse(const std::string& value)
 {
   // Convert from string or file to JSON.