1.. title:: clang-tidy - abseil-no-namespace
2
3abseil-no-namespace
4===================
5
6Ensures code does not open ``namespace absl`` as that violates Abseil's
7compatibility guidelines. Code should not open ``namespace absl`` as that
8conflicts with Abseil's compatibility guidelines and may result in breakage.
9
10Any code that uses:
11
12.. code-block:: c++
13
14 namespace absl {
15  ...
16 }
17
18will be prompted with a warning.
19
20See `the full Abseil compatibility guidelines <https://
21abseil.io/about/compatibility>`_ for more information.
22