diff --git a/abseil-in-webrtc.md b/abseil-in-webrtc.md index 74ceb6ff30..cf8f97d5ea 100644 --- a/abseil-in-webrtc.md +++ b/abseil-in-webrtc.md @@ -12,7 +12,7 @@ adds the first use. ## **Allowed** * `absl::InlinedVector` -* `absl::make_unique` and `absl::WrapUnique` +* `absl::WrapUnique` * `absl::optional` and related stuff from `absl/types/optional.h`. * `absl::string_view` * The functions in `absl/strings/ascii.h`, `absl/strings/match.h`, @@ -28,6 +28,10 @@ adds the first use. ## **Disallowed** +### `absl::make_unique` + +*Use `std::make_unique` instead.* + ### `absl::Mutex` *Use `rtc::CriticalSection` instead.*