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 853dcee commit f2f7e1eCopy full SHA for f2f7e1e
clang-tools-extra/test/clang-doc/conversion_function.cpp
@@ -11,9 +11,8 @@ struct MyStruct {
11
operator T();
12
};
13
14
-// Output incorrect conversion names.
15
-// CHECK-YAML: Name: 'operator type-parameter-0-0'
16
-// CHECK-YAML-NOT: Name: 'operator T'
+// Output correct conversion names.
+// CHECK-YAML: Name: 'operator T'
17
18
-// CHECK-HTML-NOT: <h3 id='{{[0-9A-F]*}}'>operator T</h3>
19
-// CHECK-HTML-NOT: <p>public T operator T()</p>
+// CHECK-HTML: <h3 id='{{[0-9A-F]*}}'>operator T</h3>
+// CHECK-HTML: <p>public T operator T()</p>
0 commit comments