Browse Source

Merge topic 'remove-stray-semicolon'

ccb2d5c0 cmAlgorithms.h: remove superfluous semicolon after method
Brad King 10 years ago
parent
commit
570e84b44b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmAlgorithms.h

+ 1 - 1
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)