We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 063fac5 commit 44b8595Copy full SHA for 44b8595
clang-tools-extra/docs/clang-tidy/checks/bugprone/unsafe-functions.rst
@@ -118,9 +118,13 @@ fully qualified name (``::std::original``).
118
119
Fully qualified names can contain template parameters on certain C++ classes, but not on C++ functions.
120
Type aliases are resolved before matching.
121
+
122
As an example, the member function ``open`` in the class ``std::ifstream``
123
has a fully qualified name of ``::std::basic_ifstream<char>::open``.
124
125
+ The example could also be matched with the regex ``::std::basic_ifstream<[^>]*>::open``, which matches all potential
126
+ template parameters, but does not match nested template classes.
127
128
Options
129
-------
130
0 commit comments