diff options
author | Christoph GrĂ¼ninger <foss@grueninger.de> | 2016-01-29 21:16:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-01 15:47:25 (GMT) |
commit | ccb2d5c07f32fb6bd96128527a36a00868e905fa (patch) | |
tree | f02d61d08ab8c720398b01fe70e2bebed9648523 /Source/cmAlgorithms.h | |
parent | adc3d1244bf373fca10cc15a45e34ac7aac34961 (diff) | |
download | CMake-ccb2d5c07f32fb6bd96128527a36a00868e905fa.zip CMake-ccb2d5c07f32fb6bd96128527a36a00868e905fa.tar.gz CMake-ccb2d5c07f32fb6bd96128527a36a00868e905fa.tar.bz2 |
cmAlgorithms.h: remove superfluous semicolon after method
Diffstat (limited to 'Source/cmAlgorithms.h')
-rw-r--r-- | Source/cmAlgorithms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAlgorithms.h b/Source/cmAlgorithms.h index 54617f3..bb65ea5 100644 --- a/Source/cmAlgorithms.h +++ b/Source/cmAlgorithms.h @@ -230,7 +230,7 @@ template<typename Range> std::string cmJoin(Range const& r, std::string delimiter) { return cmJoin(r, delimiter.c_str()); -}; +} template<typename Range> typename Range::const_iterator cmRemoveN(Range& r, size_t n) |