summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-05-16 20:56:41 (GMT)
committerBrad King <brad.king@kitware.com>2008-05-16 20:56:41 (GMT)
commit10db44a81d7be2ebd93c7fb1b70883d62c421723 (patch)
treeddb8cae9ff9eb79733d7eb54b5fc8b1d637e0903 /Source/cmLocalVisualStudio7Generator.cxx
parentf43748e1dd656a4b9c5f2d59ece64618a51efba5 (diff)
downloadCMake-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.cxx2
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)
{