mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-17 15:32:10 +08:00
cmAlgorithms: Remove unnecessary typename keyword
This commit is contained in:
@@ -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());
|
||||
|
Reference in New Issue
Block a user