From d802708117c6ef6b9783efe499b2a2d0d0536c77 Mon Sep 17 00:00:00 2001 From: Derek Mauro Date: Mon, 11 Mar 2024 09:14:45 -0700 Subject: Replace usages of absl::move, absl::forward, and absl::exchange with their std:: equivalents PiperOrigin-RevId: 614687225 Change-Id: I07421db08ee9c221e561f42e3bf8345fb5321401 --- absl/container/internal/layout.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'absl/container/internal/layout.h') diff --git a/absl/container/internal/layout.h b/absl/container/internal/layout.h index a4ba6101..1bf739cc 100644 --- a/absl/container/internal/layout.h +++ b/absl/container/internal/layout.h @@ -706,7 +706,7 @@ class Layout : public internal_layout::LayoutType { template static constexpr PartialType Partial(Sizes&&... sizes) { static_assert(sizeof...(Sizes) <= sizeof...(Ts), ""); - return PartialType(absl::forward(sizes)...); + return PartialType(std::forward(sizes)...); } // Creates a layout with the sizes of all arrays specified. If you know -- cgit v1.2.3