summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-01-03 12:35:31 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-01-03 12:35:31 (GMT)
commit0739b5f6b9080c19a42d9f2900c1b68e12e98837 (patch)
tree1dc0bb0eec2c6af201a1a9a60f6d1b7a41f4961e /src
parentb509708f6bbb005e3ac23945ae0298b79bb4a6df (diff)
downloadDoxygen-0739b5f6b9080c19a42d9f2900c1b68e12e98837.zip
Doxygen-0739b5f6b9080c19a42d9f2900c1b68e12e98837.tar.gz
Doxygen-0739b5f6b9080c19a42d9f2900c1b68e12e98837.tar.bz2
Compilation warning in util.cpp
When compiling util.cpp we get (on Windows 64-bit) the warning: ``` util.cpp(1075): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data ``` making it conform other calls.
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 665df8b..0c6d8fd 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1072,7 +1072,7 @@ void linkifyText(const TextGeneratorIntf &out, const Definition *scope,
void writeExamples(OutputList &ol,const ExampleList &list)
{
- QCString exampleLine=theTranslator->trWriteList(list.size());
+ QCString exampleLine=theTranslator->trWriteList((int)list.size());
//bool latexEnabled = ol.isEnabled(OutputGenerator::Latex);
//bool manEnabled = ol.isEnabled(OutputGenerator::Man);