aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-10-09 19:26:01 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-10-09 19:26:01 -0700
commit4ff85d8dccb5158e3edb73b2eb9b0d662ff0259a (patch)
treeebe288a32f9cd76bbff6a836b6f43ab5c70458a0 /src/core
parent50ca35e3e65b83e91da622a0d8d734e179bc9e6a (diff)
Preprocessor guards
Diffstat (limited to 'src/core')
-rw-r--r--src/core/lib/support/manual_constructor.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/lib/support/manual_constructor.h b/src/core/lib/support/manual_constructor.h
index be3dd4c1e3..d753cf98a0 100644
--- a/src/core/lib/support/manual_constructor.h
+++ b/src/core/lib/support/manual_constructor.h
@@ -16,6 +16,9 @@
*
*/
+#ifndef GRPC_CORE_LIB_SUPPORT_MANUAL_CONSTRUCTOR_H
+#define GRPC_CORE_LIB_SUPPORT_MANUAL_CONSTRUCTOR_H
+
// manually construct a region of memory with some type
#include <stddef.h>
@@ -69,3 +72,5 @@ class ManualConstructor {
};
} // namespace grpc_core
+
+#endif