Explorar o código

cmAlgorithms: Remove unnecessary typename keyword

jrp2014 %!s(int64=7) %!d(string=hai) anos
pai
achega
966dba5b68
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Source/cmAlgorithms.h

+ 1 - 1
Source/cmAlgorithms.h

@@ -311,7 +311,7 @@ struct RemoveDuplicatesAPI<Range, T*>
 template <typename Range>
 typename Range::const_iterator cmRemoveDuplicates(Range& r)
 {
-  typedef typename ContainerAlgorithms::RemoveDuplicatesAPI<Range> API;
+  typedef ContainerAlgorithms::RemoveDuplicatesAPI<Range> API;
   typedef typename API::value_type T;
   std::vector<T> unique;
   unique.reserve(r.size());