diff options
author | Brad King <brad.king@kitware.com> | 2008-01-29 22:30:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-29 22:30:34 (GMT) |
commit | 6066e92ba2a9470e302e29cf0e63fd096245e4f3 (patch) | |
tree | f4bdf227f5aee5401fa17fbdd4be0fdb0155b0cf /Source/cmLocalVisualStudio6Generator.h | |
parent | b90d3114c5a48eae2c9615a66b4e0f9afc37ff58 (diff) | |
download | CMake-6066e92ba2a9470e302e29cf0e63fd096245e4f3.zip CMake-6066e92ba2a9470e302e29cf0e63fd096245e4f3.tar.gz CMake-6066e92ba2a9470e302e29cf0e63fd096245e4f3.tar.bz2 |
BUG: cmTarget instances should not be copied. Removed pass-by-value arguments from cmLocalVisualStudio7Generator::WriteGroup and cmLocalVisualStudio6Generator::WriteGroup. Updated cmTarget to make this easier to find.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.h b/Source/cmLocalVisualStudio6Generator.h index e361a18..22415db 100644 --- a/Source/cmLocalVisualStudio6Generator.h +++ b/Source/cmLocalVisualStudio6Generator.h @@ -91,7 +91,7 @@ private: void AddUtilityCommandHack(cmTarget& target, int count, std::vector<std::string>& depends, const cmCustomCommand& origCommand); - void WriteGroup(const cmSourceGroup *sg, cmTarget target, + void WriteGroup(const cmSourceGroup *sg, cmTarget& target, std::ostream &fout, const char *libName); std::string CreateTargetRules(cmTarget &target, const char* configName, |