summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-02-02 01:19:30 (GMT)
committerDino Radaković <dinor@google.com>2021-02-05 18:40:10 (GMT)
commit8c269618a4f224b4407d05ca85274d4c95e36841 (patch)
treefcb245da1d0843ea9f72dc33c506e480e4569781 /docs
parentf23cf00027c9568c5f3a63f241314c6c5cb614b0 (diff)
downloadgoogletest-8c269618a4f224b4407d05ca85274d4c95e36841.zip
googletest-8c269618a4f224b4407d05ca85274d4c95e36841.tar.gz
googletest-8c269618a4f224b4407d05ca85274d4c95e36841.tar.bz2
Googletest export
Stop referring to Google's internal libraries in FAQ PiperOrigin-RevId: 355060895
Diffstat (limited to 'docs')
-rw-r--r--docs/faq.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/faq.md b/docs/faq.md
index d3c84ff..f646430 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -178,18 +178,6 @@ template argument, and thus doesn't compile in opt mode when `a` contains a call
to `htonl()`. It is difficult to make `EXPECT_EQ` bypass the `htonl()` bug, as
the solution must work with different compilers on various platforms.
-`htonl()` has some other problems as described in `//util/endian/endian.h`,
-which defines `ghtonl()` to replace it. `ghtonl()` does the same thing `htonl()`
-does, only without its problems. We suggest you to use `ghtonl()` instead of
-`htonl()`, both in your tests and production code.
-
-`//util/endian/endian.h` also defines `ghtons()`, which solves similar problems
-in `htons()`.
-
-Don't forget to add `//util/endian` to the list of dependencies in the `BUILD`
-file wherever `ghtonl()` and `ghtons()` are used. The library consists of a
-single header file and will not bloat your binary.
-
## The compiler complains about "undefined references" to some static const member variables, but I did define them in the class body. What's wrong?
If your class has a static data member: