summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/clangparser.h2
-rw-r--r--src/template.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/clangparser.h b/src/clangparser.h
index 8ee1bdb..f948c33 100644
--- a/src/clangparser.h
+++ b/src/clangparser.h
@@ -30,7 +30,7 @@ class ClangTUParser
void parse();
/** Switches to another file within the translation unit started with start().
- * @param[in] fileName The name of the file to switch to.
+ * @param[in] fd The file definition with the name of the file to switch to.
*/
void switchToFile(FileDef *fd);
diff --git a/src/template.cpp b/src/template.cpp
index 66347c4..58188fe 100644
--- a/src/template.cpp
+++ b/src/template.cpp
@@ -338,7 +338,7 @@ int TemplateList::release()
uint TemplateList::count() const
{
- return p->elems.size();
+ return static_cast<uint>(p->elems.size());
}
void TemplateList::append(const TemplateVariant &v)