From ab747028013ef4c39db8b246f44d9c04a04ca4f5 Mon Sep 17 00:00:00 2001 From: Matt Fowles Kulukundis Date: Mon, 30 Mar 2026 15:17:46 -0400 Subject: [PATCH] Mention external alternatives to go/cpp-inliner --- absl/base/macros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/absl/base/macros.h b/absl/base/macros.h index d42ecf14..6e9ba746 100644 --- a/absl/base/macros.h +++ b/absl/base/macros.h @@ -198,8 +198,8 @@ ABSL_NAMESPACE_END // See go/cpp-inliner for more information. // // Note: go/cpp-inliner is Google-internal service for automated refactoring. -// While open-source users do not have access to this service, the macro is -// provided for compatibility. +// Externally, BrontoSource (https://brontosource.dev/docs/api/inlining) supports +// this attribute (see an example at https://godbolt.org/z/4nMbYn8sb). #if ABSL_HAVE_CPP_ATTRIBUTE(clang::annotate) #define ABSL_REFACTOR_INLINE [[clang::annotate("inline-me")]] #else