Index: base/macros.h |
diff --git a/base/macros.h b/base/macros.h |
index 46ee1dadb47472edc0b2f228c4b390c89f766854..554ea439ed4a59de2efcac9b962bdbb3a7caed2b 100644 |
--- a/base/macros.h |
+++ b/base/macros.h |
@@ -52,7 +52,7 @@ template <typename T, size_t N> char (&ArraySizeHelper(T (&array)[N]))[N]; |
// really sure you don't want to do anything with the return value of a function |
// that has been marked WARN_UNUSED_RESULT, wrap it with this. Example: |
// |
-// scoped_ptr<MyType> my_var = ...; |
+// std::unique_ptr<MyType> my_var = ...; |
// if (TakeOwnership(my_var.get()) == SUCCESS) |
// ignore_result(my_var.release()); |
// |