From 8ce456967ca0885cff0415533a85ff6929d3e6c9 Mon Sep 17 00:00:00 2001 From: Mike Kruskal Date: Tue, 28 Apr 2026 20:35:12 -0700 Subject: [PATCH] Remove IWYU private pragmas now that vlog_is_on is public PiperOrigin-RevId: 907322933 Change-Id: I485ed55cb4f3686fa5dad17f58b65e3aba7dd6b6 --- absl/log/absl_vlog_is_on.h | 2 -- absl/log/vlog_is_on.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/absl/log/absl_vlog_is_on.h b/absl/log/absl_vlog_is_on.h index e4ec86db..1a6792cb 100644 --- a/absl/log/absl_vlog_is_on.h +++ b/absl/log/absl_vlog_is_on.h @@ -63,8 +63,6 @@ #include "absl/log/internal/vlog_config.h" // IWYU pragma: export #include "absl/strings/string_view.h" -// IWYU pragma: private, include "absl/log/log.h" - // This is expanded at the callsite to allow the compiler to optimize // always-false cases out of the build. // An ABSL_MAX_VLOG_VERBOSITY of 2 means that VLOG(3) and above should never diff --git a/absl/log/vlog_is_on.h b/absl/log/vlog_is_on.h index c33fcc17..67c6fb37 100644 --- a/absl/log/vlog_is_on.h +++ b/absl/log/vlog_is_on.h @@ -60,8 +60,6 @@ #include "absl/log/absl_vlog_is_on.h" // IWYU pragma: export -// IWYU pragma: private, include "absl/log/log.h" - // Each VLOG_IS_ON call site gets its own VLogSite that registers with the // global linked list of sites to asynchronously update its verbosity level on // changes to --v or --vmodule. The verbosity can also be set by manually