summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorNicolas Despres <nicolas.despres@gmail.com>2011-03-19 10:41:00 (GMT)
committerNicolas Despres <nicolas.despres@gmail.com>2011-10-23 20:15:30 (GMT)
commitd0b3a7fa48e000996775516f9ed0d78386c262de (patch)
treef985b76d6d7783add0fd63d2c61b1d30edbdf55b /Source/cmake.cxx
parentd3d7e45df205bd22d6fbeaba853354b097034719 (diff)
downloadCMake-d0b3a7fa48e000996775516f9ed0d78386c262de.zip
CMake-d0b3a7fa48e000996775516f9ed0d78386c262de.tar.gz
CMake-d0b3a7fa48e000996775516f9ed0d78386c262de.tar.bz2
Fix typo.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 05699da..d691f46 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -2881,7 +2881,7 @@ int cmake::CheckBuildSystem()
return 1;
}
- // Find find the newest dependency.
+ // Find the newest dependency.
std::vector<std::string>::iterator dep = depends.begin();
std::string dep_newest = *dep++;
for(;dep != depends.end(); ++dep)
@@ -2907,7 +2907,7 @@ int cmake::CheckBuildSystem()
}
}
- // Find find the oldest output.
+ // Find the oldest output.
std::vector<std::string>::iterator out = outputs.begin();
std::string out_oldest = *out++;
for(;out != outputs.end(); ++out)