diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-05 12:52:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 12:52:00 (GMT) |
commit | 55b5dfca66d887dc4782ff12e36ed36a3d1c985a (patch) | |
tree | 01c0808a32fb9c5f0c1a780d86920ff3c1d4d120 | |
parent | f3a9ac3df8939aba6bf2e8c63fa1ebb4bad014b3 (diff) | |
parent | 0739b5f6b9080c19a42d9f2900c1b68e12e98837 (diff) | |
download | Doxygen-55b5dfca66d887dc4782ff12e36ed36a3d1c985a.zip Doxygen-55b5dfca66d887dc4782ff12e36ed36a3d1c985a.tar.gz Doxygen-55b5dfca66d887dc4782ff12e36ed36a3d1c985a.tar.bz2 |
Merge pull request #8303 from albert-github/feature/bug_util_warn
Compilation warning in util.cpp
-rw-r--r-- | src/util.cpp | 2 |
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); |