@@ -1486,7 +1486,6 @@ unsigned getOffsetAfterHeaderGuardsAndComments(StringRef FileName,
1486
1486
// code.
1487
1487
// FIXME: do not insert headers into conditional #include blocks, e.g. #includes
1488
1488
// surrounded by compile condition "#if...".
1489
- // FIXME: do not insert existing headers.
1490
1489
// FIXME: insert empty lines between newly created blocks.
1491
1490
tooling::Replacements
1492
1491
fixCppIncludeInsertions (StringRef Code, const tooling::Replacements &Replaces,
@@ -1533,10 +1532,12 @@ fixCppIncludeInsertions(StringRef Code, const tooling::Replacements &Replaces,
1533
1532
TrimmedCode.split (Lines, ' \n ' );
1534
1533
unsigned Offset = MinInsertOffset;
1535
1534
unsigned NextLineOffset;
1535
+ std::set<StringRef> ExistingIncludes;
1536
1536
for (auto Line : Lines) {
1537
1537
NextLineOffset = std::min (Code.size (), Offset + Line.size () + 1 );
1538
1538
if (IncludeRegex.match (Line, &Matches)) {
1539
1539
StringRef IncludeName = Matches[2 ];
1540
+ ExistingIncludes.insert (IncludeName);
1540
1541
int Category = Categories.getIncludePriority (
1541
1542
IncludeName, /* CheckMainHeader=*/ FirstIncludeOffset < 0 );
1542
1543
CategoryEndOffsets[Category] = NextLineOffset;
@@ -1572,6 +1573,11 @@ fixCppIncludeInsertions(StringRef Code, const tooling::Replacements &Replaces,
1572
1573
" '#include ...'" );
1573
1574
(void )Matched;
1574
1575
auto IncludeName = Matches[2 ];
1576
+ if (ExistingIncludes.find (IncludeName) != ExistingIncludes.end ()) {
1577
+ DEBUG (llvm::dbgs () << " Skip adding existing include : " << IncludeName
1578
+ << " \n " );
1579
+ continue ;
1580
+ }
1575
1581
int Category =
1576
1582
Categories.getIncludePriority (IncludeName, /* CheckMainHeader=*/ true );
1577
1583
Offset = CategoryEndOffsets[Category];
0 commit comments