diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-26 12:53:16 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-26 12:53:16 (GMT) |
commit | c728b6c96339d4aeee46275db3a60d7220c4a9ee (patch) | |
tree | 5ea393f0ee491dd63878057efaf5733b628c001c /Source/cmSetSourceFilesPropertiesCommand.cxx | |
parent | 408361af51d125d341a680921bd69a81a0428a6c (diff) | |
download | CMake-c728b6c96339d4aeee46275db3a60d7220c4a9ee.zip CMake-c728b6c96339d4aeee46275db3a60d7220c4a9ee.tar.gz CMake-c728b6c96339d4aeee46275db3a60d7220c4a9ee.tar.bz2 |
fixed bug maybe
Diffstat (limited to 'Source/cmSetSourceFilesPropertiesCommand.cxx')
-rw-r--r-- | Source/cmSetSourceFilesPropertiesCommand.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmSetSourceFilesPropertiesCommand.cxx b/Source/cmSetSourceFilesPropertiesCommand.cxx index 1569550..7c3e8d5 100644 --- a/Source/cmSetSourceFilesPropertiesCommand.cxx +++ b/Source/cmSetSourceFilesPropertiesCommand.cxx @@ -83,6 +83,8 @@ bool cmSetSourceFilesPropertiesCommand::InitialPass( propertyPairs.push_back(*j); ++j; } + // break out of the loop because j is already == end + break; } else if (doingFiles) { |