summaryrefslogtreecommitdiffstats
path: root/src/classlist.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-03-02 19:10:51 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-03-02 19:10:51 (GMT)
commitfbebfae209139fccb15fde8fb7d1bdbb4b941875 (patch)
tree451d9d2cb66489e4ab427301909c58b4cbb63948 /src/classlist.cpp
parent6c06e912338176303d1a1e041a39984ff6fd42be (diff)
downloadDoxygen-fbebfae209139fccb15fde8fb7d1bdbb4b941875.zip
Doxygen-fbebfae209139fccb15fde8fb7d1bdbb4b941875.tar.gz
Doxygen-fbebfae209139fccb15fde8fb7d1bdbb4b941875.tar.bz2
Fix a number of compiler warnings in the 64bit build for Windows
Diffstat (limited to 'src/classlist.cpp')
-rw-r--r--src/classlist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classlist.cpp b/src/classlist.cpp
index f06f744..5e14051 100644
--- a/src/classlist.cpp
+++ b/src/classlist.cpp
@@ -168,7 +168,7 @@ void GenericsSDict::insert(const QCString &key,ClassDef *cd)
if (i==-1) return;
ArgumentList argList;
stringToArgumentList(SrcLangExt_CSharp, key.mid(i),argList);
- int c = argList.size();
+ int c = (int)argList.size();
if (c==0) return;
GenericsCollection *collection = m_dict.find(key.left(i));
if (collection==0) // new name
@@ -201,7 +201,7 @@ ClassDef *GenericsSDict::find(const QCString &key)
{
ArgumentList argList;
stringToArgumentList(SrcLangExt_CSharp,key.mid(i),argList);
- int c = argList.size();
+ int c = (int)argList.size();
return collection->find(c);
}
}