[PATCH] D102313: [docs] Fix documentation for bugprone-dangling-handle

Malcolm Parsons via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue May 11 23:59:45 PDT 2021


malcolm.parsons created this revision.
malcolm.parsons added a reviewer: aaron.ballman.
malcolm.parsons requested review of this revision.
Herald added a project: clang-tools-extra.
Herald added a subscriber: cfe-commits.

string_view isn't experimental anymore.
This check has always handled both forms.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D102313

Files:
  clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst


Index: clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst
===================================================================
--- clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst
+++ clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst
@@ -3,8 +3,7 @@
 bugprone-dangling-handle
 ========================
 
-Detect dangling references in value handles like
-``std::experimental::string_view``.
+Detect dangling references in value handles like ``std::string_view``.
 These dangling references can be a result of constructing handles from temporary
 values, where the temporary is destroyed soon after the handle is created.
 
@@ -35,4 +34,5 @@
 .. option:: HandleClasses
 
    A semicolon-separated list of class names that should be treated as handles.
-   By default only ``std::experimental::basic_string_view`` is considered.
+   By default only ``std::basic_string_view`` and
+   ``std::experimental::basic_string_view`` are considered.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102313.344691.patch
Type: text/x-patch
Size: 998 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210512/231c8410/attachment-0001.bin>


More information about the cfe-commits mailing list