Repository: mesos Updated Branches: refs/heads/master 74c503658 -> 3e68c66ba
Fixed minor style issues in command_utils.cpp. Review: https://reviews.apache.org/r/43638/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3e68c66b Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/3e68c66b Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/3e68c66b Branch: refs/heads/master Commit: 3e68c66bae9ad9b28e19ad064f9a02fb5f7cdc33 Parents: 74c5036 Author: Jojy Varghese <[email protected]> Authored: Tue Feb 16 15:55:09 2016 -0800 Committer: Jie Yu <[email protected]> Committed: Tue Feb 16 15:55:09 2016 -0800 ---------------------------------------------------------------------- src/common/command_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/3e68c66b/src/common/command_utils.cpp ---------------------------------------------------------------------- diff --git a/src/common/command_utils.cpp b/src/common/command_utils.cpp index 68b7fac..8c2ba35 100644 --- a/src/common/command_utils.cpp +++ b/src/common/command_utils.cpp @@ -140,7 +140,7 @@ Future<Nothing> tar( argv.emplace_back(input); return launch("tar", argv) - .then([] () {return Nothing();}); + .then([]() { return Nothing(); }); } @@ -162,7 +162,7 @@ Future<Nothing> untar( } return launch("tar", argv) - .then([] () {return Nothing();}); + .then([]() { return Nothing(); }); }
