diff options
author | Brad King <brad.king@kitware.com> | 2008-01-29 17:30:34 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-29 17:30:34 -0500 |
commit | 6066e92ba2a9470e302e29cf0e63fd096245e4f3 (patch) | |
tree | f4bdf227f5aee5401fa17fbdd4be0fdb0155b0cf /Source/cmLocalVisualStudio7Generator.h | |
parent | b90d3114c5a48eae2c9615a66b4e0f9afc37ff58 (diff) | |
download | cmake-6066e92ba2a9470e302e29cf0e63fd096245e4f3.tar.gz |
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/cmLocalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index 34af7f556c..11b6736daf 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -114,7 +114,7 @@ private: void WriteTargetVersionAttribute(std::ostream& fout, cmTarget& target); void WriteGroup(const cmSourceGroup *sg, - cmTarget target, std::ostream &fout, + cmTarget& target, std::ostream &fout, const char *libName, std::vector<std::string> *configs); virtual std::string GetTargetDirectory(cmTarget const&) const; |