aboutsummaryrefslogtreecommitdiff
path: root/cc/primitive_set.h
diff options
context:
space:
mode:
authortholenst <tholenst@google.com>2022-12-22 08:40:52 -0800
committerCopybara-Service <copybara-worker@google.com>2022-12-22 08:41:53 -0800
commit0200a97ff7322627de2ebc3834b602e743b0652d (patch)
treedc31f7a4b2f202a4d674de41c9b84e3943f5134f /cc/primitive_set.h
parent0c11c03be06846689fbea64c894b7c95fed16b78 (diff)
downloadtink-0200a97ff7322627de2ebc3834b602e743b0652d.tar.gz
Replace std::make_unique with absl::make_unique.
PiperOrigin-RevId: 497172810
Diffstat (limited to 'cc/primitive_set.h')
-rw-r--r--cc/primitive_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/primitive_set.h b/cc/primitive_set.h
index ba3920c6a..a62a962ad 100644
--- a/cc/primitive_set.h
+++ b/cc/primitive_set.h
@@ -339,7 +339,7 @@ class PrimitiveSet {
// If not nullptr, this mutex is used to guard all read and write access to
// the primitiveset. If nullptr, the primitiveset is immutable (and lockfree).
mutable std::unique_ptr<absl::Mutex> primitives_mutex_ =
- std::make_unique<absl::Mutex>();
+ absl::make_unique<absl::Mutex>();
CiphertextPrefixToPrimitivesMap primitives_
ABSL_GUARDED_BY(primitives_mutex_);