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.h | |
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.h')
-rw-r--r-- | Source/cmSystemTools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index c4cb4c2..8af74ed 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -294,7 +294,7 @@ public: /** put a string into the environment of the form var=value */ static bool PutEnv(const char* value); - static std::vector<cmStdString> GetEnvironmentVariables(); + static std::vector<std::string> GetEnvironmentVariables(); /** Setup the environment to enable VS 8 IDE output. */ static void EnableVSConsoleOutput(); |