diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-17 16:14:14 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-17 16:14:14 (GMT) |
commit | fe1fda64310caad84e183da3a2e830b293578ceb (patch) | |
tree | 457a23bf8050e175b92183e3e3e3847887cd9fb9 /Source/cmSystemTools.cxx | |
parent | f44fedd3e9e249d1587b12b01e50725089557c36 (diff) | |
download | CMake-fe1fda64310caad84e183da3a2e830b293578ceb.zip CMake-fe1fda64310caad84e183da3a2e830b293578ceb.tar.gz CMake-fe1fda64310caad84e183da3a2e830b293578ceb.tar.bz2 |
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.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index b140e31..55cf61d 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 ) { |