Skip to content

Commit 51eac24

Browse files
committed
important TODOs for future versions of check
1 parent d6bdb39 commit 51eac24

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

clang-tools-extra/test/clang-tidy/checkers/misc/shadowed-namespace-function-template.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ namespace foo {
88
template<typename T>
99
void f1();
1010
}
11+
12+
// FIXME: provide warning in these two cases
13+
// FIXME: provide fixit for f0
1114
template<typename T>
1215
void f0() {}
1316
template<typename T>

clang-tools-extra/test/clang-tidy/checkers/misc/shadowed-namespace-function-variadic.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ namespace foo {
55
void f0(...);
66
void f1(...);
77
}
8+
9+
// FIXME: warning in these two cases??
10+
// FIXME: fixit for f0??
811
void f0(...) {}
912
void f1(...) {}

0 commit comments

Comments
 (0)