From 7d22b340fa5e77a1d811113d255a6c3fd1c73cf5 Mon Sep 17 00:00:00 2001 From: Helmut Januschka Date: Tue, 30 Jun 2026 23:38:41 +0200 Subject: [PATCH] Include for std::move in metadata_bytes.h metadata_bytes.h uses std::move in the owning constructor but only includes and . It happens to compile when gets pulled in transitively, but breaks under stricter setups (e.g. a libc++ modules build) where std::move must come from its own header. --- cpp/src/phonenumbers/metadata_bytes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/src/phonenumbers/metadata_bytes.h b/cpp/src/phonenumbers/metadata_bytes.h index cd7db1d2fa..39690fd2e9 100644 --- a/cpp/src/phonenumbers/metadata_bytes.h +++ b/cpp/src/phonenumbers/metadata_bytes.h @@ -19,6 +19,7 @@ #include #include +#include namespace i18n { namespace phonenumbers {