diff options
author | Brad King <brad.king@kitware.com> | 2008-05-16 20:56:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-05-16 20:56:41 (GMT) |
commit | 10db44a81d7be2ebd93c7fb1b70883d62c421723 (patch) | |
tree | ddb8cae9ff9eb79733d7eb54b5fc8b1d637e0903 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | f43748e1dd656a4b9c5f2d59ece64618a51efba5 (diff) | |
download | CMake-10db44a81d7be2ebd93c7fb1b70883d62c421723.zip CMake-10db44a81d7be2ebd93c7fb1b70883d62c421723.tar.gz CMake-10db44a81d7be2ebd93c7fb1b70883d62c421723.tar.bz2 |
COMP: Fix build with concept checking of STL.
- Fix cmSourceGroup to not use std::vector with an incomplete type.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index d25962b..5f4ddf5 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1473,7 +1473,7 @@ void cmLocalVisualStudio7Generator } } - std::vector<cmSourceGroup> children = sg->GetGroupChildren(); + std::vector<cmSourceGroup> const& children = sg->GetGroupChildren(); for(unsigned int i=0;i<children.size();++i) { |