From 33e682f24427a0eb634bd3186fe3c6fd96bd6768 Mon Sep 17 00:00:00 2001 From: Francis Tsui Date: Thu, 14 Mar 2024 17:27:55 -0700 Subject: [PATCH] Bypass GN check of absl/log include. PiperOrigin-RevId: 615954726 --- internal/platform/logging.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/platform/logging.h b/internal/platform/logging.h index f372a7eb..7749f1ed 100644 --- a/internal/platform/logging.h +++ b/internal/platform/logging.h @@ -38,8 +38,8 @@ #define DCHECK_GE(a, b) static_cast(0), a >= b ? (void) 0 : abort() #else // IWYU pragma: begin_exports -#include "absl/log/check.h" -#include "absl/log/log.h" +#include "absl/log/check.h" // nogncheck +#include "absl/log/log.h" // nogncheck // IWYU pragma: end_exports #endif #include "internal/platform/implementation/log_message.h"