From 3b6e659d95cb780a1f93686a00e62d5ea01c1227 Mon Sep 17 00:00:00 2001 From: Protobuf Team Bot Date: Wed, 6 Mar 2024 14:52:06 -0800 Subject: [PATCH] Minor cleanup: IWYU, clang-tidy, etc. PiperOrigin-RevId: 613349591 --- src/google/protobuf/message.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/google/protobuf/message.cc b/src/google/protobuf/message.cc index bfdc0e86e7..46f4716e6c 100644 --- a/src/google/protobuf/message.cc +++ b/src/google/protobuf/message.cc @@ -15,8 +15,9 @@ #include #include #include -#include +#include // IWYU pragma: keep for operator new(). #include +#include #include "absl/base/call_once.h" #include "absl/base/optimization.h" @@ -44,7 +45,6 @@ #include "google/protobuf/reflection_ops.h" #include "google/protobuf/unknown_field_set.h" #include "google/protobuf/wire_format.h" -#include "google/protobuf/wire_format_lite.h" // Must be included last. @@ -64,7 +64,6 @@ void RegisterFileLevelMetadata(const DescriptorTable* descriptor_table); using internal::DownCast; using internal::ReflectionOps; using internal::WireFormat; -using internal::WireFormatLite; void Message::MergeImpl(MessageLite& to, const MessageLite& from) { ReflectionOps::Merge(DownCast(from), DownCast(&to));