aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2019-08-09 10:13:01 -0400
committerGennadiy Civil <misterg@google.com>2019-08-15 17:33:20 -0400
commitde38f6380766e5aba3f59a5aac1c90766de5b72c (patch)
tree5252adb6183e61024936791299f26d8bd8fb2f86 /googletest/docs
parent90a443f9c2437ca8a682a1ac625eba64e1d74a8a (diff)
downloadgoogletest-de38f6380766e5aba3f59a5aac1c90766de5b72c.tar.gz
googletest-de38f6380766e5aba3f59a5aac1c90766de5b72c.tar.bz2
googletest-de38f6380766e5aba3f59a5aac1c90766de5b72c.zip
Googletest export
Internal change, documentation only. PiperOrigin-RevId: 262554386
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md4
1 files changed, 0 insertions, 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 <ostream>
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 <ostream>
namespace foo {