summaryrefslogtreecommitdiffstats
path: root/Source/cmVariableWatch.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-03-10 18:54:57 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-03-10 18:54:57 (GMT)
commit89e5fc63fec560bec27d8517cc74ec41232736a0 (patch)
treee4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmVariableWatch.cxx
parent509e383aacb65a501b20ce9a5520a31daff152e3 (diff)
downloadCMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip
CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz
CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2
STYLE: fix line lengths
Diffstat (limited to 'Source/cmVariableWatch.cxx')
-rw-r--r--Source/cmVariableWatch.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmVariableWatch.cxx b/Source/cmVariableWatch.cxx
index 2f5bd03..b54ff87 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;