summaryrefslogtreecommitdiff
path: root/Source/cmCacheManager.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-08-23 15:13:49 -0400
committerKen Martin <ken.martin@kitware.com>2002-08-23 15:13:49 -0400
commit13d4f89dfe5bbe51fca76f945b4819a3ced1c888 (patch)
treeaf7b70c21bdb61058895629f1faa3e122561968a /Source/cmCacheManager.h
parente1d5c0c72908cb4b104e36702ab6007ab4111dc3 (diff)
downloadcmake-13d4f89dfe5bbe51fca76f945b4819a3ced1c888.tar.gz
compiler warnings
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r--Source/cmCacheManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h
index 3510624dbd..feb1e68fc4 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,