From de38f6380766e5aba3f59a5aac1c90766de5b72c Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 9 Aug 2019 10:13:01 -0400 Subject: [PATCH] Googletest export Internal change, documentation only. PiperOrigin-RevId: 262554386 --- googletest/docs/advanced.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index e05d3179..51005e93 100644 --- a/googletest/docs/advanced.md +++ b/googletest/docs/advanced.md @@ -543,8 +543,6 @@ to do a better job at printing your particular type than to dump the bytes. To do that, define `<<` for your type: ```c++ -// Streams are allowed only for logging. Don't include this for -// any other purpose. #include namespace foo { @@ -573,8 +571,6 @@ doesn't do what you want (and you cannot change it). If so, you can instead define a `PrintTo()` function like this: ```c++ -// Streams are allowed only for logging. Don't include this for -// any other purpose. #include namespace foo {