summaryrefslogtreecommitdiff
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-17 11:14:14 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-17 11:14:14 -0500
commitfe1fda64310caad84e183da3a2e830b293578ceb (patch)
tree457a23bf8050e175b92183e3e3e3847887cd9fb9 /Source/cmSystemTools.cxx
parentf44fedd3e9e249d1587b12b01e50725089557c36 (diff)
downloadcmake-fe1fda64310caad84e183da3a2e830b293578ceb.tar.gz
ENH: Use vector of plain strings and add cmake -E command for getting environment
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index b140e315bc..55cf61d116 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1280,9 +1280,9 @@ bool cmSystemTools::PutEnv(const char* value)
return ret == 0;
}
-std::vector<cmStdString> cmSystemTools::GetEnvironmentVariables()
+std::vector<std::string> cmSystemTools::GetEnvironmentVariables()
{
- std::vector<cmStdString> env;
+ std::vector<std::string> env;
int cc;
for ( cc = 0; environ[cc]; ++ cc )
{