Fix comment typo.
Thanks to Alex Gaynor for catching this. Change-Id: I00e86f90a6ecb845393c0f4f9f8177a053645e70 Reviewed-on: https://boringssl-review.googlesource.com/15784 Commit-Queue: Steven Valdez <svaldez@google.com> Reviewed-by: Steven Valdez <svaldez@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
This commit is contained in:
parent
2b2676f698
commit
8ee0d14795
@ -428,7 +428,7 @@ class StackAllocated {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Holds ownership of heap-allocated BoringSSL structures. Sample usage:
|
// Holds ownership of heap-allocated BoringSSL structures. Sample usage:
|
||||||
// bssl::UniquePtr<BIO> rsa(RSA_new());
|
// bssl::UniquePtr<RSA> rsa(RSA_new());
|
||||||
// bssl::UniquePtr<BIO> bio(BIO_new(BIO_s_mem()));
|
// bssl::UniquePtr<BIO> bio(BIO_new(BIO_s_mem()));
|
||||||
template <typename T>
|
template <typename T>
|
||||||
using UniquePtr = std::unique_ptr<T, internal::Deleter<T>>;
|
using UniquePtr = std::unique_ptr<T, internal::Deleter<T>>;
|
||||||
|
Loading…
Reference in New Issue
Block a user