From 20ff4cb2102273013b4109a1b00de262dbc2eec4 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Sun, 7 Jun 2026 01:21:23 +0000 Subject: [PATCH] deps: update googletest to 7140cd416cecd7462a8aae488024abeee55598e4 --- deps/googletest/include/gtest/gtest-message.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/googletest/include/gtest/gtest-message.h b/deps/googletest/include/gtest/gtest-message.h index 448ac6b7ee2e09..065ed07ed596a7 100644 --- a/deps/googletest/include/gtest/gtest-message.h +++ b/deps/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<<;