diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-12-15 22:26:00 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-12-15 22:26:00 (GMT) |
commit | 5b232ded151fc22144978b74cdaf7031d466e527 (patch) | |
tree | b20c096cdc01697dd5bd3a3a2a5df1dc95e4c263 /Source/cmSystemTools.cxx | |
parent | ce8a34907a47b06f62f27aff1e1d6cb8dc9ee76e (diff) | |
download | CMake-5b232ded151fc22144978b74cdaf7031d466e527.zip CMake-5b232ded151fc22144978b74cdaf7031d466e527.tar.gz CMake-5b232ded151fc22144978b74cdaf7031d466e527.tar.bz2 |
ENH: Add initial memory check support which works for Valgrind
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 c878899..3046abc 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -909,8 +909,8 @@ void cmSystemTools::ExpandListArgument(const std::string& arg, } } -bool cmSystemTools::SimpleGlob(const std::string& glob, - std::vector<std::string>& files, +bool cmSystemTools::SimpleGlob(const cmStdString& glob, + std::vector<cmStdString>& files, int type /* = 0 */) { files.clear(); |