diff --git a/src/utils/unique_vector.h b/src/utils/unique_vector.h index e8359fcb25..1ae751a8c3 100644 --- a/src/utils/unique_vector.h +++ b/src/utils/unique_vector.h @@ -22,7 +22,7 @@ namespace tint { /// UniqueVector is an ordered container that only contains unique items. /// Attempting to add a duplicate is a no-op. -template +template > struct UniqueVector { /// The iterator returned by begin() and end() using ConstIterator = typename std::vector::const_iterator; @@ -55,7 +55,7 @@ struct UniqueVector { private: std::vector vector; - std::unordered_set set; + std::unordered_set set; }; } // namespace tint