From db4d0744a360e757147fd1c3ee42c70521515790 Mon Sep 17 00:00:00 2001 From: Anay Wadhera Date: Tue, 6 Dec 2022 15:41:19 -0800 Subject: [PATCH] Drop base/check.h include for chrome PiperOrigin-RevId: 493432083 --- internal/platform/logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/platform/logging.h b/internal/platform/logging.h index 722c963b..8a6d6b9a 100644 --- a/internal/platform/logging.h +++ b/internal/platform/logging.h @@ -18,7 +18,7 @@ // base/logging.h is only included to allow logging clients to include CHECK's. // In Chrome this is base/check.h. See crbug/1212611. #ifdef NEARBY_CHROMIUM -#include "base/check.h" +#include "absl/log/check.h" // base/logging.h is available externally as "glog". However, this repo contains // template files that can't be built by Swift Package Manager. To build with // SPM we only need CHECK and DCHECK defined.