diff options
author | Craig Tiller <ctiller@google.com> | 2017-09-07 10:20:57 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-09-07 10:20:57 -0700 |
commit | 0033c752d128a088b6a33cfcb0105a163210b8eb (patch) | |
tree | faac5f289aa6e430fc8b5c20eabc43b23dc12465 | |
parent | b8fcff171adeba98f96ea74e8a18a1b6aa4c9a8d (diff) |
C89
-rw-r--r-- | include/grpc/impl/codegen/port_platform.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/grpc/impl/codegen/port_platform.h b/include/grpc/impl/codegen/port_platform.h index c80c679c98..1904c636f7 100644 --- a/include/grpc/impl/codegen/port_platform.h +++ b/include/grpc/impl/codegen/port_platform.h @@ -409,15 +409,15 @@ typedef unsigned __int64 uint64_t; #define CENSUSAPI GRPCAPI #endif -#ifndef GPR_ATTRIBUTE_NO_TSAN // (1) +#ifndef GPR_ATTRIBUTE_NO_TSAN /* (1) */ #if defined(__has_feature) #if __has_feature(thread_sanitizer) #define GPR_ATTRIBUTE_NO_TSAN __attribute__((no_sanitize("thread"))) -#endif // __has_feature(thread_sanitizer) -#endif // defined(__has_feature) -#ifndef GPR_ATTRIBUTE_NO_TSAN // (2) +#endif /* __has_feature(thread_sanitizer) */ +#endif /* defined(__has_feature) */ +#ifndef GPR_ATTRIBUTE_NO_TSAN /* (2) */ #define GPR_ATTRIBUTE_NO_TSAN -#endif // GPR_ATTRIBUTE_NO_TSAN (2) -#endif // GPR_ATTRIBUTE_NO_TSAN (1) +#endif /* GPR_ATTRIBUTE_NO_TSAN (2) */ +#endif /* GPR_ATTRIBUTE_NO_TSAN (1) */ #endif /* GRPC_IMPL_CODEGEN_PORT_PLATFORM_H */ |