Browse Source

cmAlgorithms: Remove unnecessary typename keyword

jrp2014 7 năm trước cách đây
mục cha
commit
966dba5b68
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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());