Style: Use camelCase identifiers

Fix most snake_case identifiers in cmInstall* to use camelCase instead.

Also, update clang-tidy configuration to help with applying these
changes, though the relevant check remains off by default.
This commit is contained in:
Matthew Woehlke
2026-05-06 11:17:02 -04:00
parent 1c4ef7291f
commit 732b9585a7
27 changed files with 275 additions and 264 deletions
+11 -11
View File
@@ -40,18 +40,18 @@ public:
void printResult(std::size_t n, std::size_t total);
private:
std::vector<std::string> command;
std::vector<std::string> output;
std::string name;
std::unique_ptr<cmUVProcessChain> chain;
std::unique_ptr<cmUVStreamReadHandle> streamHandler;
std::vector<std::string> Command;
std::vector<std::string> Output;
std::string Name;
std::unique_ptr<cmUVProcessChain> Chain;
std::unique_ptr<cmUVStreamReadHandle> StreamHandler;
};
private:
std::vector<InstallScript> scripts;
std::vector<std::string> configs;
std::vector<std::string> directories;
std::vector<std::string> components;
std::string binaryDir;
bool parallel;
std::vector<InstallScript> Scripts;
std::vector<std::string> Configs;
std::vector<std::string> Directories;
std::vector<std::string> Components;
std::string BinaryDir;
bool Parallel;
};