Skip to content

Commit d6bdb39

Browse files
committed
fix doc
1 parent 1f7748d commit d6bdb39

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang-tools-extra/docs/clang-tidy/checks/misc/shadowed-namespace-function.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ The check will suggest adding the appropriate namespace qualification:
3232
+ void utils::process() {}
3333
3434
The check will not warn about:
35+
3536
- Static functions or member functions;
3637
- Functions in anonymous namespaces;
3738
- The ``main`` function.
@@ -45,8 +46,8 @@ Limitations
4546

4647
namespace llvm::gsym {
4748
struct MergedFunctionsInfo {
48-
friend bool operator==(const llvm::gsym::MergedFunctionsInfo &LHS,
49-
const llvm::gsym::MergedFunctionsInfo &RHS);
49+
friend bool operator==(const MergedFunctionsInfo &LHS,
50+
const MergedFunctionsInfo &RHS);
5051
};
5152
}
5253

0 commit comments

Comments
 (0)