summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph GrĂ¼ninger <foss@grueninger.de>2016-01-29 22:16:03 +0100
committerBrad King <brad.king@kitware.com>2016-02-01 10:47:25 -0500
commitccb2d5c07f32fb6bd96128527a36a00868e905fa (patch)
treef02d61d08ab8c720398b01fe70e2bebed9648523
parentadc3d1244bf373fca10cc15a45e34ac7aac34961 (diff)
downloadcmake-ccb2d5c07f32fb6bd96128527a36a00868e905fa.tar.gz
cmAlgorithms.h: remove superfluous semicolon after method
-rw-r--r--Source/cmAlgorithms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAlgorithms.h b/Source/cmAlgorithms.h
index 54617f30f5..bb65ea5561 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)