summaryrefslogtreecommitdiff
path: root/Source/cmVariableWatch.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-01-09 11:27:57 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2003-01-09 11:27:57 -0500
commiteff6a204327aeba3916c2d5c2f79d90881ef9430 (patch)
treef98aa8d30e998aa272b2cf3a20b01508cad6700e /Source/cmVariableWatch.h
parent57c97f62f69c23b610676f9ca0f2d5b91de71533 (diff)
downloadcmake-eff6a204327aeba3916c2d5c2f79d90881ef9430.tar.gz
use cmstdstring in maps
Diffstat (limited to 'Source/cmVariableWatch.h')
-rw-r--r--Source/cmVariableWatch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVariableWatch.h b/Source/cmVariableWatch.h
index d083e52dee..db85371f28 100644
--- a/Source/cmVariableWatch.h
+++ b/Source/cmVariableWatch.h
@@ -63,7 +63,7 @@ protected:
};
typedef std::vector< Pair > VectorOfPairs;
- typedef std::map<std::string, VectorOfPairs > StringToVectorOfPairs;
+ typedef std::map<cmStdString, VectorOfPairs > StringToVectorOfPairs;
StringToVectorOfPairs m_WatchMap;
};