Procházet zdrojové kódy

compressed_pair: minor changes

Michele Caini před 4 roky
rodič
revize
18c9bfa134
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/entt/core/compressed_pair.hpp

+ 2 - 2
src/entt/core/compressed_pair.hpp

@@ -256,7 +256,7 @@ inline void swap(compressed_pair<First, Second> &lhs, compressed_pair<First, Sec
 namespace std {
 namespace std {
 
 
 /**
 /**
- * @brief `std::tuple_size` specialization for `entt::compressed_pair`.
+ * @brief `std::tuple_size` specialization for `compressed_pair`s.
  * @tparam First The type of the first element that the pair stores.
  * @tparam First The type of the first element that the pair stores.
  * @tparam Second The type of the second element that the pair stores.
  * @tparam Second The type of the second element that the pair stores.
  */
  */
@@ -264,7 +264,7 @@ template<typename First, typename Second>
 struct tuple_size<entt::compressed_pair<First, Second>>: integral_constant<size_t, 2u> {};
 struct tuple_size<entt::compressed_pair<First, Second>>: integral_constant<size_t, 2u> {};
 
 
 /**
 /**
- * @brief `std::tuple_element` specialization for `entt::compressed_pair`.
+ * @brief `std::tuple_element` specialization for `compressed_pair`s.
  * @tparam Index The index of the type to return.
  * @tparam Index The index of the type to return.
  * @tparam First The type of the first element that the pair stores.
  * @tparam First The type of the first element that the pair stores.
  * @tparam Second The type of the second element that the pair stores.
  * @tparam Second The type of the second element that the pair stores.