diff options
author | Abseil Team <absl-team@google.com> | 2019-08-09 14:13:01 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-08-15 21:33:20 (GMT) |
commit | de38f6380766e5aba3f59a5aac1c90766de5b72c (patch) | |
tree | 5252adb6183e61024936791299f26d8bd8fb2f86 /googletest | |
parent | 90a443f9c2437ca8a682a1ac625eba64e1d74a8a (diff) | |
download | googletest-de38f6380766e5aba3f59a5aac1c90766de5b72c.zip googletest-de38f6380766e5aba3f59a5aac1c90766de5b72c.tar.gz googletest-de38f6380766e5aba3f59a5aac1c90766de5b72c.tar.bz2 |
Googletest export
Internal change, documentation only.
PiperOrigin-RevId: 262554386
Diffstat (limited to 'googletest')
-rw-r--r-- | googletest/docs/advanced.md | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index e05d317..51005e9 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 { |