brintos

brintos / llvm-project-archived public Read only

0
0
Text · 525 B · 46e79cf Raw
22 lines · plain
1.. title:: clang-tidy - abseil-no-namespace2 3abseil-no-namespace4===================5 6Ensures code does not open ``namespace absl`` as that violates Abseil's7compatibility guidelines. Code should not open ``namespace absl`` as that8conflicts 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