llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang-tools-extra Author: None (higher-performance) <details> <summary>Changes</summary> Addresses #<!-- -->174229 for this tidy. --- Full diff: https://github.com/llvm/llvm-project/pull/174238.diff 1 Files Affected: - (modified) clang-tools-extra/docs/clang-tidy/checks/bugprone/use-after-move.rst (+7-7) ``````````diff diff --git a/clang-tools-extra/docs/clang-tidy/checks/bugprone/use-after-move.rst b/clang-tools-extra/docs/clang-tidy/checks/bugprone/use-after-move.rst index 95a752e9399a9..e58f0eccd0b59 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/bugprone/use-after-move.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/bugprone/use-after-move.rst @@ -259,15 +259,15 @@ Options .. option:: InvalidationFunctions - A semicolon-separated list of names of functions that cause their first - arguments to be invalidated (e.g., closing a handle). + A semicolon-separated list of regexes matching names of functions that cause + their first arguments to be invalidated (e.g., closing a handle). For member functions, the first argument is considered to be the implicit object argument (``this``). Default value is an empty string. .. option:: ReinitializationFunctions - A semicolon-separated list of names of functions that reinitialize the - object. For member functions, the implicit object argument (``*this``) is - considered to be reinitialized. For non-member or static member functions, - the first argument is considered to be reinitialized. Default value is an - empty string. + A semicolon-separated list of regexes matching names of functions that + reinitialize the object. For member functions, the implicit object argument + (``*this``) is considered to be reinitialized. For non-member or static member + functions, the first argument is considered to be reinitialized. Default value + is an empty string. `````````` </details> https://github.com/llvm/llvm-project/pull/174238 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
