Skip to content

Commit

Permalink
[docs] Correct -fvisibility-inlines-hidden description
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337505 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
MaskRay committed Jul 19, 2018
1 parent 73ce27a commit b89b5e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/ClangCommandLineReference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1928,7 +1928,7 @@ Enable the loop vectorization passes

.. option:: -fvisibility-inlines-hidden

Give inline C++ member functions default visibility by default
Give inline C++ member functions hidden visibility by default

.. option:: -fvisibility-ms-compat

Expand Down
2 changes: 1 addition & 1 deletion include/clang/Driver/Options.td
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,7 @@ def fverbose_asm : Flag<["-"], "fverbose-asm">, Group<f_Group>;
def fvisibility_EQ : Joined<["-"], "fvisibility=">, Group<f_Group>,
HelpText<"Set the default symbol visibility for all global declarations">, Values<"hidden,default">;
def fvisibility_inlines_hidden : Flag<["-"], "fvisibility-inlines-hidden">, Group<f_Group>,
HelpText<"Give inline C++ member functions default visibility by default">,
HelpText<"Give inline C++ member functions hidden visibility by default">,
Flags<[CC1Option]>;
def fvisibility_ms_compat : Flag<["-"], "fvisibility-ms-compat">, Group<f_Group>,
HelpText<"Give global types 'default' visibility and global functions and "
Expand Down

0 comments on commit b89b5e1

Please sign in to comment.