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 2b6556e commit 875938cCopy full SHA for 875938c
clang-tools-extra/test/clang-doc/comments-in-macros.cpp
@@ -3,6 +3,7 @@
3
// RUN: clang-doc --format=md --doxygen --output=%t --executor=standalone %s
4
// RUN: FileCheck %s < %t/GlobalNamespace/MyClass.md --check-prefix=MD-MYCLASS-LINE
5
// RUN: FileCheck %s < %t/GlobalNamespace/MyClass.md --check-prefix=MD-MYCLASS
6
+
7
// RUN: clang-doc --format=html --doxygen --output=%t --executor=standalone %s
8
// RUN: FileCheck %s < %t/GlobalNamespace/MyClass.html --check-prefix=HTML-MYCLASS-LINE
9
// RUN: FileCheck %s < %t/GlobalNamespace/MyClass.html --check-prefix=HTML-MYCLASS
@@ -11,8 +12,7 @@
11
12
/** \
13
* @brief Declare a method to calculate the sum of two numbers\
14
*/ \
- int Add(int a, int b) \
15
- { \
+ int Add(int a, int b) { \
16
return a + b; \
17
}
18
0 commit comments