Skip to content

Commit a2a5a9f

Browse files
committed
git clang-format
Created using spr 1.3.6-beta.1
2 parents d64c254 + 67fbc41 commit a2a5a9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ static RecordDecl *getRecordDeclForType(const QualType &T) {
236236
return nullptr;
237237
}
238238

239-
TypeInfo getTypeInfoForType(const QualType &T, const PrintingPolicy& Policy) {
239+
TypeInfo getTypeInfoForType(const QualType &T, const PrintingPolicy &Policy) {
240240
const TagDecl *TD = getTagDeclForType(T);
241241
if (!TD)
242242
return TypeInfo(Reference(SymbolID(), T.getAsString(Policy)));
@@ -413,7 +413,7 @@ static void parseEnumerators(EnumInfo &I, const EnumDecl *D) {
413413
}
414414

415415
static void parseParameters(FunctionInfo &I, const FunctionDecl *D) {
416-
auto &LO = D->getLangOpts();
416+
auto &LO = D->getLangOpts();
417417
for (const ParmVarDecl *P : D->parameters()) {
418418
FieldTypeInfo &FieldInfo = I.Params.emplace_back(
419419
getTypeInfoForType(P->getOriginalType(), LO), P->getNameAsString());
@@ -543,7 +543,7 @@ static void populateFunctionInfo(FunctionInfo &I, const FunctionDecl *D,
543543
bool &IsInAnonymousNamespace) {
544544
populateSymbolInfo(I, D, FC, LineNumber, Filename, IsFileInRootDir,
545545
IsInAnonymousNamespace);
546-
auto &LO = D->getLangOpts();
546+
auto &LO = D->getLangOpts();
547547
I.ReturnType = getTypeInfoForType(D->getReturnType(), LO);
548548
parseParameters(I, D);
549549

0 commit comments

Comments
 (0)