From a721f1b20c605f635413e22d8b7427a8b4f3956c Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Sat, 30 May 2026 20:49:05 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 924116072 Change-Id: I3e04ebbff65c897e50c37e1a47a2018f31382104 --- googletest/include/gtest/gtest-message.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/googletest/include/gtest/gtest-message.h b/googletest/include/gtest/gtest-message.h index 448ac6b7e..065ed07ed 100644 --- a/googletest/include/gtest/gtest-message.h +++ b/googletest/include/gtest/gtest-message.h @@ -129,7 +129,7 @@ class GTEST_API_ Message { int>::type = 0 #endif // GTEST_HAS_ABSL > - inline Message& operator<<(const T& val) { + Message& operator<<(const T& val) { // Some libraries overload << for STL containers. These // overloads are defined in the global namespace instead of ::std. // @@ -155,7 +155,7 @@ class GTEST_API_ Message { template ::value, // NOLINT int>::type = 0> - inline Message& operator<<(const T& val) { + Message& operator<<(const T& val) { // ::operator<< is needed here for a similar reason as with the non-Abseil // version above using ::operator<<;