diff options
author | Mark D. Roth <roth@google.com> | 2017-11-28 09:12:16 -0800 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2017-11-28 09:12:16 -0800 |
commit | 3228489f0ba812b4d773136ddc697fb3e6b90bf1 (patch) | |
tree | e1828af7c6721a5caf5f11dd14f27eba7cb5f830 /src/core/lib/support | |
parent | 835537fbc78f083e311dfec148d2b25d74af78e8 (diff) |
Fix include guard check.
Diffstat (limited to 'src/core/lib/support')
-rw-r--r-- | src/core/lib/support/debug_location.h | 2 | ||||
-rw-r--r-- | src/core/lib/support/reference_counted.h | 2 | ||||
-rw-r--r-- | src/core/lib/support/reference_counted_ptr.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/support/debug_location.h b/src/core/lib/support/debug_location.h index 9260752d5e..0095941ce3 100644 --- a/src/core/lib/support/debug_location.h +++ b/src/core/lib/support/debug_location.h @@ -45,4 +45,4 @@ class DebugLocation { } // namespace grpc_core -#endif // GRPC_CORE_LIB_SUPPORT_DEBUG_LOCATION_H +#endif /* GRPC_CORE_LIB_SUPPORT_DEBUG_LOCATION_H */ diff --git a/src/core/lib/support/reference_counted.h b/src/core/lib/support/reference_counted.h index e71b4fc593..0076aa562c 100644 --- a/src/core/lib/support/reference_counted.h +++ b/src/core/lib/support/reference_counted.h @@ -56,4 +56,4 @@ class ReferenceCounted { } // namespace grpc_core -#endif // GRPC_CORE_LIB_SUPPORT_REFERENCE_COUNTED_H +#endif /* GRPC_CORE_LIB_SUPPORT_REFERENCE_COUNTED_H */ diff --git a/src/core/lib/support/reference_counted_ptr.h b/src/core/lib/support/reference_counted_ptr.h index 71d5c36d52..e4599a5965 100644 --- a/src/core/lib/support/reference_counted_ptr.h +++ b/src/core/lib/support/reference_counted_ptr.h @@ -87,4 +87,4 @@ inline ReferenceCountedPtr<T> MakeReferenceCounted(Args&&... args) { } // namespace grpc_core -#endif // GRPC_CORE_LIB_SUPPORT_REFERENCE_COUNTED_PTR_H +#endif /* GRPC_CORE_LIB_SUPPORT_REFERENCE_COUNTED_PTR_H */ |