Skip to content

Commit

Permalink
Internal Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 592127673
Change-Id: I15d7635bc8184f3cd105c4bac6778bdf1aad1161
  • Loading branch information
ise-crypto authored and Copybara-Service committed Dec 19, 2023
1 parent d6d6dc7 commit c8ccf87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tink/util/secret_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class SecretUniquePtr {
pointer get() const { return value_.get(); }
deleter_type& get_deleter() { return value_.get_deleter(); }
const deleter_type& get_deleter() const { return value_.get_deleter(); }
void swap(SecretUniquePtr& other) { value_.swap(other.value_); }
void swap(SecretUniquePtr& other) noexcept { value_.swap(other.value_); }
void reset() { value_.reset(); }

typename std::add_lvalue_reference<T>::type operator*() const {
Expand Down

0 comments on commit c8ccf87

Please sign in to comment.