From 5f0fa1b5ec4e533aad94aa05eea4e34b58cc57a5 Mon Sep 17 00:00:00 2001 From: xla authors Date: Thu, 13 Feb 2025 22:34:39 -0800 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 726777146 --- xla/tsl/lib/gtl/int_type_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xla/tsl/lib/gtl/int_type_test.cc b/xla/tsl/lib/gtl/int_type_test.cc index 85b011ed5bcb1..19e6a7cb10fc3 100644 --- a/xla/tsl/lib/gtl/int_type_test.cc +++ b/xla/tsl/lib/gtl/int_type_test.cc @@ -275,7 +275,7 @@ TYPED_TEST(IntTypeTest, TestMove) { static NotCopyable Make(int i) { NotCopyable f; f.inttype = TypeParam(i); - f.ptr.reset(new int(i)); + f.ptr = std::make_unique(i); return f; } };