You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mp...@apache.org on 2015/12/22 20:13:56 UTC

mesos git commit: Removed extra '; ' after inline class function definitions.

Repository: mesos
Updated Branches:
  refs/heads/master ff216a08f -> b9276760b


Removed extra ';' after inline class function definitions.

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


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

Branch: refs/heads/master
Commit: b9276760bc7dd10931b0b442323e5d509a533500
Parents: ff216a0
Author: Alexander Rukletsov <ru...@gmail.com>
Authored: Tue Dec 22 13:17:44 2015 -0500
Committer: Michael Park <mp...@apache.org>
Committed: Tue Dec 22 14:01:55 2015 -0500

----------------------------------------------------------------------
 3rdparty/libprocess/3rdparty/stout/include/stout/json.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/b9276760/3rdparty/libprocess/3rdparty/stout/include/stout/json.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/json.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/json.hpp
index 726c855..87d0183 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/json.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/json.hpp
@@ -188,7 +188,7 @@ struct Boolean
 // JSON::Boolean(true).
 struct True : Boolean
 {
-  True() : Boolean(true) {};
+  True() : Boolean(true) {}
 };