Skip to content

Commit 8878fe5

Browse files
Add missing final newlines to all 3C files.
1 parent c781cd9 commit 8878fe5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+55
-55
lines changed

clang-tools-extra/clangd/3CCommands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ bool Execute3CCommand(const ExecuteCommandParams &Params,
6969
}
7070
} // namespace clangd
7171
} // namespace clang
72-
#endif
72+
#endif

clang-tools-extra/clangd/3CDiagnostics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ bool _3CDiagnostics::PopulateDiagsFromConstraintsInfo(ConstraintsInfo &Line) {
132132

133133
} // namespace clangd
134134
} // namespace clang
135-
#endif
135+
#endif

clang/include/clang/3C/AVarGraph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ struct DOTGraphTraits<AVarGraph> : public llvm::DefaultDOTGraphTraits,
6565
std::string getNodeLabel(const DataNode<BoundsKey> *Node, const AVarGraph &G);
6666
};
6767
} // namespace llvm
68-
#endif // _AVARGRAPH_H
68+
#endif // _AVARGRAPH_H

clang/include/clang/3C/CastPlacement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ class CastPlacementVisitor : public RecursiveASTVisitor<CastPlacementVisitor> {
3131
std::string getCastString(ConstraintVariable *Src, ConstraintVariable *Dst);
3232
void surroundByCast(const std::string &, Expr *);
3333
};
34-
#endif // _CASTPLACEMENT_H
34+
#endif // _CASTPLACEMENT_H

clang/include/clang/3C/ConstraintsGraph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,4 +319,4 @@ struct DOTGraphTraits<GraphVizOutputGraph>
319319
};
320320
} // namespace llvm
321321

322-
#endif // _CONSTRAINTSGRAPH_H
322+
#endif // _CONSTRAINTSGRAPH_H

clang/include/clang/3C/StructInit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ class StructVariableInitializer
4545
RSet &RewriteThese;
4646
std::set<RecordDecl *> RecordsWithCPointers;
4747
};
48-
#endif
48+
#endif

clang/include/clang/3C/TypeVariableAnalysis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ class TypeVarVisitor : public RecursiveASTVisitor<TypeVarVisitor>,
9696
void insertBinding(CallExpr *CE, const TypeVariableType *TyV, QualType Ty,
9797
CVarSet &CVs);
9898
};
99-
#endif
99+
#endif

clang/lib/3C/AVarBoundsInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1352,4 +1352,4 @@ bool ContextSensitiveBoundsKeyVisitor::VisitCallExpr(CallExpr *CE) {
13521352
Info.getABoundsInfo().contextualizeCVar(CE, {&COpt.getValue()}, Context);
13531353
}
13541354
return true;
1355-
}
1355+
}

clang/lib/3C/AVarGraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ llvm::DOTGraphTraits<AVarGraph>::getNodeLabel(const DataNode<BoundsKey> *Node,
7070
if (auto *B = ABInfo->getBounds(BK))
7171
LblStr += "(B:" + B->mkString(ABInfo) + ")";
7272
return LblStr;
73-
}
73+
}

clang/lib/3C/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ set( LLVM_LINK_COMPONENTS
4545
clangTooling
4646
clangToolingRefactoring
4747
)
48-
target_include_directories(obj.clang3C PUBLIC)
48+
target_include_directories(obj.clang3C PUBLIC)

0 commit comments

Comments
 (0)