aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-11-10 16:23:44 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2017-11-13 10:03:02 -0800
commit684f15b210fe4442b714dc93053f05a75431629e (patch)
tree18938896ecde75ccea653fc93e2f4768418be269 /test/core
parentf0798b4873ab72a374c141d84a4c4d5ceec2b638 (diff)
clang fmt
Diffstat (limited to 'test/core')
-rw-r--r--test/core/support/manual_constructor_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/support/manual_constructor_test.cc b/test/core/support/manual_constructor_test.cc
index 13368ee62b..714f8b21a0 100644
--- a/test/core/support/manual_constructor_test.cc
+++ b/test/core/support/manual_constructor_test.cc
@@ -18,7 +18,6 @@
/* Test of gpr synchronization support. */
-#include "src/core/lib/support/abstract.h"
#include "src/core/lib/support/manual_constructor.h"
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
@@ -27,6 +26,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <cstring>
+#include "src/core/lib/support/abstract.h"
#include "test/core/util/test_config.h"
class A {
@@ -44,6 +44,7 @@ class B : public A {
~B() {}
const char* foo() override { return "B_foo"; }
char get_junk() { return junk[0]; }
+
private:
char junk[1000];
};
@@ -54,6 +55,7 @@ class C : public B {
~C() {}
virtual const char* bar() { return "C_bar"; }
char get_more_junk() { return more_junk[0]; }
+
private:
char more_junk[1000];
};