summaryrefslogtreecommitdiffstats
path: root/src/dotdirdeps.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-01-05 19:19:20 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-01-22 20:45:17 (GMT)
commit47c7998549ac037df473a423186c301e556ceb74 (patch)
treeaeb28f47c02f055343ce44e6155fc8fb7153d51c /src/dotdirdeps.cpp
parentb70b63f09aebea3543fc077e7cb206c4a6e58d01 (diff)
downloadDoxygen-47c7998549ac037df473a423186c301e556ceb74.zip
Doxygen-47c7998549ac037df473a423186c301e556ceb74.tar.gz
Doxygen-47c7998549ac037df473a423186c301e556ceb74.tar.bz2
Refactoring: replace FilePairDict by FilePairLinkedMap
Diffstat (limited to 'src/dotdirdeps.cpp')
-rw-r--r--src/dotdirdeps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotdirdeps.cpp b/src/dotdirdeps.cpp
index da6364f..8ec3a6e 100644
--- a/src/dotdirdeps.cpp
+++ b/src/dotdirdeps.cpp
@@ -165,7 +165,7 @@ void writeDotDirDepGraph(FTextStream &t,const DirDef *dd,bool linkRelations)
Doxygen::dirRelations.add(relationName,
std::make_unique<DirRelation>(
relationName,dir,udir.get()));
- int nrefs = udir->filePairs().count();
+ size_t nrefs = udir->filePairs().size();
t << " " << dir->getOutputFileBase() << "->"
<< usedDir->getOutputFileBase();
t << " [headlabel=\"" << nrefs << "\", labeldistance=1.5";