You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by me...@apache.org on 2016/07/06 06:20:56 UTC

mesos git commit: Fixed minor style issues.

Repository: mesos
Updated Branches:
  refs/heads/master d66f0b1e6 -> f9e17a9cc


Fixed minor style issues.

Adds a proper breakline before braces in method definition.

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


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

Branch: refs/heads/master
Commit: f9e17a9ccfc5658b856508545fea109a30df46fe
Parents: d66f0b1
Author: Alexander Rojas <al...@mesosphere.io>
Authored: Tue Jul 5 23:19:58 2016 -0700
Committer: Adam B <ad...@mesosphere.io>
Committed: Tue Jul 5 23:19:58 2016 -0700

----------------------------------------------------------------------
 src/authorizer/local/authorizer.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/f9e17a9c/src/authorizer/local/authorizer.cpp
----------------------------------------------------------------------
diff --git a/src/authorizer/local/authorizer.cpp b/src/authorizer/local/authorizer.cpp
index a66d4d5..f979e83 100644
--- a/src/authorizer/local/authorizer.cpp
+++ b/src/authorizer/local/authorizer.cpp
@@ -201,7 +201,8 @@ public:
       permissive_(permissive) {}
 
   virtual Try<bool> approved(
-      const Option<ObjectApprover::Object>& object) const noexcept override {
+      const Option<ObjectApprover::Object>& object) const noexcept override
+  {
     // Construct subject.
     ACL::Entity aclSubject;
     if (subject_.isSome()) {