summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index 4f76b00..99610eb 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -46,7 +46,7 @@ public:
std::vector<std::string>& argsOut)
{
for (; first != last; ++first) {
- cmSystemTools::ExpandListArgument(*first, argsOut);
+ cmExpandList(*first, argsOut);
}
}
@@ -66,7 +66,7 @@ public:
{
std::vector<std::string> argsOut;
for (; first != last; ++first) {
- cmSystemTools::ExpandListArgument(*first, argsOut);
+ ExpandListArgument(*first, argsOut);
}
return argsOut;
}