diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-11-10 14:29:27 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-11-10 14:29:27 (GMT) |
commit | 64843b17375c6ffd8b46ddaa9272e3ad27b6adec (patch) | |
tree | 2a37669494607d60ba0216c9123e66dddb60c321 /Source/cmVisualStudio10TargetGenerator.h | |
parent | a9c09599002baa27bdf4f98664829a92ba529240 (diff) | |
download | CMake-64843b17375c6ffd8b46ddaa9272e3ad27b6adec.zip CMake-64843b17375c6ffd8b46ddaa9272e3ad27b6adec.tar.gz CMake-64843b17375c6ffd8b46ddaa9272e3ad27b6adec.tar.bz2 |
cmVisualStudio10TargetGenerator: use std::string for tag
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index 0835cde..30027c9 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -165,7 +165,7 @@ private: void WriteLibOptions(Elem& e1, std::string const& config); void WriteManifestOptions(Elem& e1, std::string const& config); void WriteEvents(Elem& e1, std::string const& configName); - void WriteEvent(Elem& e1, const char* name, + void WriteEvent(Elem& e1, std::string const& name, std::vector<cmCustomCommand> const& commands, std::string const& configName); void WriteGroupSources(Elem& e0, std::string const& name, |