summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-10-23 19:27:12 (GMT)
committerBrad King <brad.king@kitware.com>2024-10-25 12:43:04 (GMT)
commit7605228f5e01866ffa96d18ac5b951f63165a6c9 (patch)
treef9b9b459577d16dc7913b27d3650674f569b71f5 /Source
parentebd038613ebe3722afe78a1cd33c8de7d77075df (diff)
downloadCMake-7605228f5e01866ffa96d18ac5b951f63165a6c9.zip
CMake-7605228f5e01866ffa96d18ac5b951f63165a6c9.tar.gz
CMake-7605228f5e01866ffa96d18ac5b951f63165a6c9.tar.bz2
codespell: Fix typos
Diffstat (limited to 'Source')
-rw-r--r--Source/CTest/cmCTestScriptHandler.h2
-rw-r--r--Source/CTest/cmCTestTestHandler.h2
-rw-r--r--Source/cmGeneratorExpressionNode.cxx14
3 files changed, 9 insertions, 9 deletions
diff --git a/Source/CTest/cmCTestScriptHandler.h b/Source/CTest/cmCTestScriptHandler.h
index 8aa07e7..7747750 100644
--- a/Source/CTest/cmCTestScriptHandler.h
+++ b/Source/CTest/cmCTestScriptHandler.h
@@ -67,7 +67,7 @@ public:
void AddConfigurationScript(const std::string&, bool pscope);
/**
- * Run a dashboard using a specified confiuration script
+ * Run a dashboard using a specified configuration script
*/
int ProcessHandler() override;
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h
index dd1bc59..c35af3f 100644
--- a/Source/CTest/cmCTestTestHandler.h
+++ b/Source/CTest/cmCTestTestHandler.h
@@ -65,7 +65,7 @@ public:
*/
void PopulateCustomVectors(cmMakefile* mf) override;
- //! Control the use of the regular expresisons, call these methods to turn
+ //! Control the use of the regular expressions, call these methods to turn
/// them on
void UseIncludeRegExp();
void UseExcludeRegExp();
diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx
index 918dc28..7f4e4ac 100644
--- a/Source/cmGeneratorExpressionNode.cxx
+++ b/Source/cmGeneratorExpressionNode.cxx
@@ -4469,8 +4469,8 @@ static const struct ShellPathNode : public cmGeneratorExpressionNode
const GeneratorExpressionContent* content,
cmGeneratorExpressionDAGChecker* /*dagChecker*/) const override
{
- cmList listIn{ parameters.front() };
- if (listIn.empty()) {
+ cmList list_in{ parameters.front() };
+ if (list_in.empty()) {
reportError(context, content->GetOriginalExpression(),
"\"\" is not an absolute path.");
return std::string();
@@ -4478,17 +4478,17 @@ static const struct ShellPathNode : public cmGeneratorExpressionNode
cmStateSnapshot snapshot = context->LG->GetStateSnapshot();
cmOutputConverter converter(snapshot);
const char* separator = snapshot.GetState()->UseWindowsShell() ? ";" : ":";
- std::vector<std::string> listOut;
- listOut.reserve(listIn.size());
- for (auto const& in : listIn) {
+ std::vector<std::string> list_out;
+ list_out.reserve(list_in.size());
+ for (auto const& in : list_in) {
if (!cmSystemTools::FileIsFullPath(in)) {
reportError(context, content->GetOriginalExpression(),
"\"" + in + "\" is not an absolute path.");
return std::string();
}
- listOut.emplace_back(converter.ConvertDirectorySeparatorsForShell(in));
+ list_out.emplace_back(converter.ConvertDirectorySeparatorsForShell(in));
}
- return cmJoin(listOut, separator);
+ return cmJoin(list_out, separator);
}
} shellPathNode;