mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
rename foo variables to better names
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user