diff options
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r-- | Source/cmCacheManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index 3510624..feb1e68 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -100,7 +100,7 @@ public: ///! Get the number of entries in the cache CM_EXPORT int GetSize() { - return m_Cache.size(); } + return static_cast<int>(m_Cache.size()); } ///! Break up a line like VAR:type="value" into var, type and value static bool ParseEntry(const char* entry, |