summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-25 12:50:15 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-25 12:50:15 (GMT)
commite0c4e9f3a5416d53aa4da381ce6804022106fa83 (patch)
tree9073f68d0d72a3bb4edbe324419937637aaea4b5 /src/doxygen.cpp
parenteb3d1eb5ad85c94d6f2c32934fce2b8630331d6c (diff)
downloadDoxygen-e0c4e9f3a5416d53aa4da381ce6804022106fa83.zip
Doxygen-e0c4e9f3a5416d53aa4da381ce6804022106fa83.tar.gz
Doxygen-e0c4e9f3a5416d53aa4da381ce6804022106fa83.tar.bz2
Refactoring: better processing of (un)quoted values for tags in the configuration file (part 2)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 9b3dcb0..4abc9bc 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -4229,7 +4229,7 @@ static int findEndOfTemplate(const QCString &s,int startPos)
static int findTemplateSpecializationPosition(const char *name)
{
if (name==0 || name[0]=='\0') return 0;
- int l = strlen(name);
+ int l = static_cast<int>(strlen(name));
if (name[l-1]=='>') // search backward to find the matching <, allowing nested <...> and strings.
{
int count=1;