aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/subprocess.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-15 14:43:47 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-05-15 14:43:47 -0700
commit3cdd9bbdbce1f460254b7117ebb7cff67146d5d1 (patch)
treec6187bfef6df95407d1d7a8f109ecff158c92e6a /test/cpp/util/subprocess.h
parentf95f048c3e05e9d7de351534ca5c09b8edbadaaf (diff)
clang-format
Diffstat (limited to 'test/cpp/util/subprocess.h')
-rw-r--r--test/cpp/util/subprocess.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/cpp/util/subprocess.h b/test/cpp/util/subprocess.h
index 02cce578f8..8fafe3d177 100644
--- a/test/cpp/util/subprocess.h
+++ b/test/cpp/util/subprocess.h
@@ -43,17 +43,17 @@ namespace grpc {
class SubProcess {
public:
- SubProcess(std::initializer_list<std::string> args);
- ~SubProcess();
+ SubProcess(std::initializer_list<std::string> args);
+ ~SubProcess();
- int Join();
- void Interrupt();
+ int Join();
+ void Interrupt();
private:
- SubProcess(const SubProcess& other);
- SubProcess& operator=(const SubProcess& other);
+ SubProcess(const SubProcess& other);
+ SubProcess& operator=(const SubProcess& other);
- gpr_subprocess *const subprocess_;
+ gpr_subprocess* const subprocess_;
};
} // namespace grpc