mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 06:40:16 -05:00
BUG: const char* FilePath could point to a non-existent std::string for
commands used in a macro, using a std::string instead copies the contents so this works (correct error message) Alex
This commit is contained in:
@@ -52,7 +52,7 @@ struct cmListFileFunction
|
||||
{
|
||||
std::string Name;
|
||||
std::vector<cmListFileArgument> Arguments;
|
||||
const char* FilePath;
|
||||
std::string FilePath;
|
||||
long Line;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user