[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / abseil / no-namespace.rst
blob46e79cfc11223ccc39e5b0deec29e6c869d42100
1 .. title:: clang-tidy - abseil-no-namespace
3 abseil-no-namespace
4 ===================
6 Ensures code does not open ``namespace absl`` as that violates Abseil's
7 compatibility guidelines. Code should not open ``namespace absl`` as that
8 conflicts with Abseil's compatibility guidelines and may result in breakage.
10 Any code that uses:
12 .. code-block:: c++
14  namespace absl {
15   ...
16  }
18 will be prompted with a warning.
20 See `the full Abseil compatibility guidelines <https://
21 abseil.io/about/compatibility>`_ for more information.