diff options
author | Yash Tibrewal <yashkt@google.com> | 2017-11-07 17:02:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 17:02:23 -0800 |
commit | d9da7387b8057f3bd99a417a5ee905377bce9296 (patch) | |
tree | df5e16acf65e083ce2b56a9543eba918ef35b451 /src/core | |
parent | c03867ff224a98dab5a93b3ba70b95c46f05a440 (diff) | |
parent | 67c0effd324b3fa86c13dabe5a63f66d48672e30 (diff) |
Merge pull request #13147 from yashykt/testc++ize
Convert test/core to C++
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/iomgr/network_status_tracker.h | 8 | ||||
-rw-r--r-- | src/core/lib/support/cmdline.cc | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/core/lib/iomgr/network_status_tracker.h b/src/core/lib/iomgr/network_status_tracker.h index 3033e0a833..32244d9b77 100644 --- a/src/core/lib/iomgr/network_status_tracker.h +++ b/src/core/lib/iomgr/network_status_tracker.h @@ -20,10 +20,6 @@ #define GRPC_CORE_LIB_IOMGR_NETWORK_STATUS_TRACKER_H #include "src/core/lib/iomgr/endpoint.h" -#ifdef __cplusplus -extern "C" { -#endif - void grpc_network_status_init(void); void grpc_network_status_shutdown(void); @@ -31,8 +27,4 @@ void grpc_network_status_register_endpoint(grpc_endpoint* ep); void grpc_network_status_unregister_endpoint(grpc_endpoint* ep); void grpc_network_status_shutdown_all_endpoints(); -#ifdef __cplusplus -} -#endif - #endif /* GRPC_CORE_LIB_IOMGR_NETWORK_STATUS_TRACKER_H */ diff --git a/src/core/lib/support/cmdline.cc b/src/core/lib/support/cmdline.cc index 49b34194c3..d2785d2f30 100644 --- a/src/core/lib/support/cmdline.cc +++ b/src/core/lib/support/cmdline.cc @@ -105,7 +105,7 @@ void gpr_cmdline_add_flag(gpr_cmdline* cl, const char* name, const char* help, } void gpr_cmdline_add_string(gpr_cmdline* cl, const char* name, const char* help, - char** value) { + const char** value) { add_arg(cl, name, help, ARGTYPE_STRING, value); } |