Fixed break before braces style for 'enum'.
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/0dc74bbf Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/0dc74bbf Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/0dc74bbf Branch: refs/heads/master Commit: 0dc74bbfbc38058786f5a77d531c70b512d1a6ef Parents: c96d9eb Author: Michael Park <[email protected]> Authored: Wed Sep 9 18:17:35 2015 -0700 Committer: Michael Park <[email protected]> Committed: Wed Sep 9 18:17:50 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/src/io.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/0dc74bbf/3rdparty/libprocess/src/io.cpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/src/io.cpp b/3rdparty/libprocess/src/io.cpp index e5fca24..88c37ba 100644 --- a/3rdparty/libprocess/src/io.cpp +++ b/3rdparty/libprocess/src/io.cpp @@ -32,7 +32,8 @@ namespace process { namespace io { namespace internal { -enum ReadFlags { +enum ReadFlags +{ NONE = 0, PEEK };
