diff options
Diffstat (limited to 'clang-tools-extra/docs/clang-tidy/checks/misc-forward-declaration-namespace.rst')
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/misc-forward-declaration-namespace.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/misc-forward-declaration-namespace.rst b/clang-tools-extra/docs/clang-tidy/checks/misc-forward-declaration-namespace.rst index 7db873e0edb..2dd1c463b9b 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/misc-forward-declaration-namespace.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/misc-forward-declaration-namespace.rst @@ -9,7 +9,7 @@ The check inspects all unused forward declarations and checks if there is any declaration/definition with the same name existing, which could indicate that the forward declaration is in a potentially wrong namespace. -.. code:: c++ +.. code-block:: c++ namespace na { struct A; } namespace nb { struct A {}; } |