summaryrefslogtreecommitdiffstats
path: root/src/section.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/section.h')
-rw-r--r--src/section.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/section.h b/src/section.h
index 9bdfb3b..9f1916e 100644
--- a/src/section.h
+++ b/src/section.h
@@ -115,7 +115,7 @@ class SectionRefs
const_iterator begin() const { return m_entries.cbegin(); }
const_iterator end() const { return m_entries.cend(); }
bool empty() const { return m_entries.empty(); }
- int size() const { return m_entries.size(); }
+ int size() const { return (int)m_entries.size(); }
private:
SectionInfoVec m_entries;