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 1f7748d commit d6bdb39Copy full SHA for d6bdb39
clang-tools-extra/docs/clang-tidy/checks/misc/shadowed-namespace-function.rst
@@ -32,6 +32,7 @@ The check will suggest adding the appropriate namespace qualification:
32
+ void utils::process() {}
33
34
The check will not warn about:
35
+
36
- Static functions or member functions;
37
- Functions in anonymous namespaces;
38
- The ``main`` function.
@@ -45,8 +46,8 @@ Limitations
45
46
47
namespace llvm::gsym {
48
struct MergedFunctionsInfo {
- friend bool operator==(const llvm::gsym::MergedFunctionsInfo &LHS,
49
- const llvm::gsym::MergedFunctionsInfo &RHS);
+ friend bool operator==(const MergedFunctionsInfo &LHS,
50
+ const MergedFunctionsInfo &RHS);
51
};
52
}
53
0 commit comments