diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-20 23:18:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-20 23:18:24 (GMT) |
commit | b123c07ecfcad7eef40591009e1642fa00ec50ee (patch) | |
tree | e9397c9fbf220717be48261ad82b23c491d40b42 /Source/cmCacheManager.h | |
parent | 7ef61736648d213bdc147866da6e2d4cdaa9cf20 (diff) | |
download | CMake-b123c07ecfcad7eef40591009e1642fa00ec50ee.zip CMake-b123c07ecfcad7eef40591009e1642fa00ec50ee.tar.gz CMake-b123c07ecfcad7eef40591009e1642fa00ec50ee.tar.bz2 |
rename foo variables to better names
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r-- | Source/cmCacheManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index 5bc757a..d79db99 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -61,10 +61,10 @@ public: CacheEntryType GetType() const { return this->GetEntry().m_Type; } cmCacheManager &m_Container; std::map<cmStdString, CacheEntry>::iterator m_Position; - CacheIterator(cmCacheManager &foo) : m_Container(foo) { + CacheIterator(cmCacheManager &cm) : m_Container(cm) { this->Begin(); } - CacheIterator(cmCacheManager &foo, const char* key) : m_Container(foo) { + CacheIterator(cmCacheManager &cm, const char* key) : m_Container(cm) { this->Find(key); } private: |