diff options
Diffstat (limited to 'clang/docs')
-rw-r--r-- | clang/docs/LTOVisibility.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/LTOVisibility.rst b/clang/docs/LTOVisibility.rst index ed15d8d7867..3a60f54e1b9 100644 --- a/clang/docs/LTOVisibility.rst +++ b/clang/docs/LTOVisibility.rst @@ -83,7 +83,7 @@ cases involving two linkage units, ``main`` and ``dso.so``. | | }; | | | struct E : D { | | | struct [[clang::lto_visibility_public]] D { | | | virtual void g() { ... } | | | virtual void g() = 0; | | | }; | - | | }; | | | __attribute__(visibility("default"))) D *mkE() { | + | | }; | | | __attribute__((visibility("default"))) D *mkE() { | | | | | | return new E; | | +-----------------------------------------------------+ | | } | | | | | |