mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
stringapi: Use strings for variable names
Variable names are always generated by CMake and should never be NULL.
This commit is contained in:
@@ -60,8 +60,8 @@ protected:
|
||||
bool HandleReverseCommand(std::vector<std::string> const& args);
|
||||
|
||||
|
||||
bool GetList(std::vector<std::string>& list, const char* var);
|
||||
bool GetListString(std::string& listString, const char* var);
|
||||
bool GetList(std::vector<std::string>& list, const std::string& var);
|
||||
bool GetListString(std::string& listString, const std::string& var);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user