mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
cmGeneratorTarget: Constify cmSourceFile* in containers.
Some of them will be used with other APIs which require value_type to be cmSourceFile const*.
This commit is contained in:
@@ -57,7 +57,8 @@ private:
|
||||
void WriteProjectConfigurationValues();
|
||||
void WriteSource(const char* tool, cmSourceFile const* sf,
|
||||
const char* end = 0);
|
||||
void WriteSources(const char* tool, std::vector<cmSourceFile*> const&);
|
||||
void WriteSources(const char* tool,
|
||||
std::vector<cmSourceFile const*> const&);
|
||||
void WriteAllSources();
|
||||
void WriteDotNetReferences();
|
||||
void WriteEmbeddedResourceGroup();
|
||||
|
||||
Reference in New Issue
Block a user