Update by review

pull/21206/head
Esun Kim 5 years ago
parent 8fa5fcf778
commit 467f96651b
  1. 5
      doc/core/moving-to-c++.md

@ -38,10 +38,9 @@ C++ compatible with
- gRPC main libraries (grpc, grpc+++, and plugins) cannot use following C++ libraries:
(Test and example codes are relatively free from this constraints)
- `<thread>`. Use `grpc_core::Thread`.
- `<condition_variable>`. Use `gpr_cv_init`.
- `<condition_variable>`. Use `grpc_core::CondVar`.
- `<mutex>`. Use `grpc_core::Mutex`, `grpc_core::MutexLock`, and `grpc_core::ReleasableMutexLock`.
- `<future>`
- `<mutex>`. Use `gpr_mu_init`.
- `<chrono>`
- `<ratio>`
- `<system_error>`
- `<filesystem>`

Loading…
Cancel
Save