diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 13:54:57 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 13:54:57 -0500 |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmVariableWatch.cxx | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | cmake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmVariableWatch.cxx')
-rw-r--r-- | Source/cmVariableWatch.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmVariableWatch.cxx b/Source/cmVariableWatch.cxx index 2f5bd030ba..b54ff871b7 100644 --- a/Source/cmVariableWatch.cxx +++ b/Source/cmVariableWatch.cxx @@ -44,7 +44,8 @@ void cmVariableWatch::AddWatch(const std::string& variable, vp->push_back(p); } -void cmVariableWatch::RemoveWatch(const std::string& variable, WatchMethod method) +void cmVariableWatch::RemoveWatch(const std::string& variable, + WatchMethod method) { cmVariableWatch::VectorOfPairs* vp = &m_WatchMap[variable]; cmVariableWatch::VectorOfPairs::iterator it; @@ -58,9 +59,11 @@ void cmVariableWatch::RemoveWatch(const std::string& variable, WatchMethod metho } } -void cmVariableWatch::VariableAccessed(const std::string& variable, int access_type) const +void cmVariableWatch::VariableAccessed(const std::string& variable, + int access_type) const { - cmVariableWatch::StringToVectorOfPairs::const_iterator mit = m_WatchMap.find(variable); + cmVariableWatch::StringToVectorOfPairs::const_iterator mit = + m_WatchMap.find(variable); if ( mit != m_WatchMap.end() ) { const cmVariableWatch::VectorOfPairs* vp = &mit->second; |