diff options
Diffstat (limited to 'absl/memory/memory.h')
-rw-r--r-- | absl/memory/memory.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/absl/memory/memory.h b/absl/memory/memory.h index 2220ee4e..055d88e0 100644 --- a/absl/memory/memory.h +++ b/absl/memory/memory.h @@ -40,7 +40,8 @@ namespace absl { // ----------------------------------------------------------------------------- // // Adopts ownership from a raw pointer and transfers it to the returned -// `std::unique_ptr`, whose type is deduced. +// `std::unique_ptr`, whose type is deduced. DO NOT specify the template type T +// when calling WrapUnique. // // Example: // X* NewX(int, int); |