summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-06-06 11:38:02 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-06-06 11:38:02 (GMT)
commitb42789d09fd8a81a40c0f13ba2c024b7eec71d92 (patch)
treedad9ac9395f560fae59f3fefa13f5b1faccfdc07 /src/index.cpp
parentf49f1c8cdd9babbbe0350c9ad3d3a3e92244085e (diff)
downloadDoxygen-b42789d09fd8a81a40c0f13ba2c024b7eec71d92.zip
Doxygen-b42789d09fd8a81a40c0f13ba2c024b7eec71d92.tar.gz
Doxygen-b42789d09fd8a81a40c0f13ba2c024b7eec71d92.tar.bz2
Fixed compilation issue on Windows for setNum with size_t argument
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 54fa90b..04d6ce4 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -3988,7 +3988,7 @@ static void writeGroupTreeNode(OutputList &ol, GroupDef *gd, int level, FTVHelp*
numSubItems += gd->getNamespaces()->count();
numSubItems += gd->getClasses()->count();
numSubItems += gd->getFiles()->count();
- numSubItems += gd->getDirs().size();
+ numSubItems += static_cast<int>(gd->getDirs().size());
numSubItems += gd->getPages()->count();
}