diff options
author | Tomasz Kamiński <tkaminsk@redhat.com> | 2025-04-18 09:38:32 +0200 |
---|---|---|
committer | Tomasz Kamiński <tkaminsk@redhat.com> | 2025-04-18 11:11:58 +0200 |
commit | 6808f74b4f07decb3727624f0e62e7c57ae87022 (patch) | |
tree | b9fb14fe5b5ef855c0aaff4fa9160602a0752c7e | |
parent | 7e628ff49f7f890d5337369d7b4f8e21a1f17029 (diff) | |
download | gcc-6808f74b4f07decb3727624f0e62e7c57ae87022.zip gcc-6808f74b4f07decb3727624f0e62e7c57ae87022.tar.gz gcc-6808f74b4f07decb3727624f0e62e7c57ae87022.tar.bz2 |
libstdc++: Clarify that _S_ prefix is be used for static member functions.
libstdc++-v3/ChangeLog:
* doc/xml/manual/appendix_contributing.xml: Add 'and functions'.
-rw-r--r-- | libstdc++-v3/doc/xml/manual/appendix_contributing.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/doc/xml/manual/appendix_contributing.xml b/libstdc++-v3/doc/xml/manual/appendix_contributing.xml index ac607fc..b924545 100644 --- a/libstdc++-v3/doc/xml/manual/appendix_contributing.xml +++ b/libstdc++-v3/doc/xml/manual/appendix_contributing.xml @@ -895,7 +895,7 @@ indicate a place that may require attention for multi-thread safety. Examples: <code>_M_num_elements _M_initialize ()</code> - Static data members, constants, and enumerations: <literal>_S_.*</literal> + Static data and function members, constants, and enumerations: <literal>_S_.*</literal> Examples: <code>_S_max_elements _S_default_value</code> |