cmAlgorithms: Remove unnecessary typename keyword
This commit is contained in:
parent
12a145534a
commit
966dba5b68
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user