diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-09 16:27:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-09 16:27:57 (GMT) |
commit | eff6a204327aeba3916c2d5c2f79d90881ef9430 (patch) | |
tree | f98aa8d30e998aa272b2cf3a20b01508cad6700e /Source/cmVariableWatch.h | |
parent | 57c97f62f69c23b610676f9ca0f2d5b91de71533 (diff) | |
download | CMake-eff6a204327aeba3916c2d5c2f79d90881ef9430.zip CMake-eff6a204327aeba3916c2d5c2f79d90881ef9430.tar.gz CMake-eff6a204327aeba3916c2d5c2f79d90881ef9430.tar.bz2 |
use cmstdstring in maps
Diffstat (limited to 'Source/cmVariableWatch.h')
-rw-r--r-- | Source/cmVariableWatch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVariableWatch.h b/Source/cmVariableWatch.h index d083e52..db85371 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; }; |