Skip to content

Commit

Permalink
Update by review
Browse files Browse the repository at this point in the history
  • Loading branch information
veblush committed Nov 15, 2019
1 parent 8fa5fcf commit 467f966
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions doc/core/moving-to-c++.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>`
Expand Down

0 comments on commit 467f966

Please sign in to comment.