diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-02 16:45:26 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-02 16:45:26 -0700 |
commit | 36f9bb0edf3d46e0edcfb21ff4e234b8f2e899b6 (patch) | |
tree | 5acc74aa57f42133fe3a372aae558e0ec378480e /src/core | |
parent | 7cbb4feff91ca0e8cee86688c5a613d217e3ac21 (diff) |
Fix include guards
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/support/memory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/support/memory.h b/src/core/lib/support/memory.h index bd56ca3939..6eff94eff7 100644 --- a/src/core/lib/support/memory.h +++ b/src/core/lib/support/memory.h @@ -31,8 +31,8 @@ * */ -#ifndef GRPC_SUPPORT_MEMORY_H -#define GRPC_SUPPORT_MEMORY_H +#ifndef GRPC_CORE_LIB_SUPPORT_MEMORY_H +#define GRPC_CORE_LIB_SUPPORT_MEMORY_H #include <grpc/support/alloc.h> @@ -71,4 +71,4 @@ inline UniquePtr<T> MakeUnique(Args&&... args) { } // namespace grpc_core -#endif /* GRPC_SUPPORT_NEW_H */ +#endif /* GRPC_CORE_LIB_SUPPORT_MEMORY_H */ |