summaryrefslogtreecommitdiffstats
path: root/Source/cmVariableWatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmVariableWatch.h')
-rw-r--r--Source/cmVariableWatch.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmVariableWatch.h b/Source/cmVariableWatch.h
index 44bddc5..15e8f90 100644
--- a/Source/cmVariableWatch.h
+++ b/Source/cmVariableWatch.h
@@ -61,15 +61,15 @@ public:
protected:
struct Pair
{
- WatchMethod m_Method;
- void* m_ClientData;
- Pair() : m_Method(0), m_ClientData(0) {}
+ WatchMethod Method;
+ void* ClientData;
+ Pair() : Method(0), ClientData(0) {}
};
typedef std::vector< Pair > VectorOfPairs;
typedef std::map<cmStdString, VectorOfPairs > StringToVectorOfPairs;
- StringToVectorOfPairs m_WatchMap;
+ StringToVectorOfPairs WatchMap;
};