@@ -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
415415static 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