Skip to content

Commit 1b588b1

Browse files
committed
Fix formatting
Created using spr 1.3.6-beta.1
2 parents aeefb3a + 1df6049 commit 1b588b1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

clang-tools-extra/clang-doc/MDGenerator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ static void genMarkdown(const ClangDocContext &CDCtx, const FunctionInfo &I,
163163
writeHeader(I.Name, 3, OS);
164164
std::string Access = getAccessSpelling(I.Access).str();
165165
if (Access != "")
166-
writeLine(genItalic(Access + " " + I.ReturnType.Type.QualName + " " + I.Name +
167-
"(" + Stream.str() + ")"),
166+
writeLine(genItalic(Access + " " + I.ReturnType.Type.QualName + " " +
167+
I.Name + "(" + Stream.str() + ")"),
168168
OS);
169169
else
170170
writeLine(genItalic(I.ReturnType.Type.QualName + " " + I.Name + "(" +

clang-tools-extra/test/clang-doc/templates.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void function<bool, 0>(bool x) {}
100100

101101
/// A Tuple type
102102
///
103-
/// Does nothing.
103+
/// Does Tuple things.
104104
template<typename ...Tys>
105105
struct tuple{};
106106

@@ -154,3 +154,4 @@ tuple<int,int,bool> func_with_tuple_param(tuple<int,int,bool> t){ return t;}
154154
// MD: *Defined at {{.*}}templates.cpp#[[# @LINE - 44]]*
155155
// MD: A function with a tuple parameter
156156
// MD: **t** The input to func_with_tuple_param
157+

0 commit comments

Comments
 (0)