acinis 5 дней назад
Родитель
Сommit
1cd2a79363
5 измененных файлов с 122 добавлено и 122 удалено
  1. 112 112
      single_include/entt/entt.hpp
  2. 1 1
      src/entt/core/tuple.hpp
  3. 7 7
      src/entt/core/type_traits.hpp
  4. 1 1
      src/entt/meta/policy.hpp
  5. 1 1
      src/entt/meta/type_traits.hpp

Разница между файлами не показана из-за своего большого размера
+ 112 - 112
single_include/entt/entt.hpp


+ 1 - 1
src/entt/core/tuple.hpp

@@ -8,7 +8,7 @@
 namespace entt {
 namespace entt {
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a given type is a
+ * @brief Provides the member constant `value` equal to true if a given type is a
  * tuple, false otherwise.
  * tuple, false otherwise.
  * @tparam Type The type to test.
  * @tparam Type The type to test.
  */
  */

+ 7 - 7
src/entt/core/type_traits.hpp

@@ -268,7 +268,7 @@ template<typename List>
 using type_list_unique_t = type_list_unique<List>::type;
 using type_list_unique_t = type_list_unique<List>::type;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a type list contains a
+ * @brief Provides the member constant `value` equal to true if a type list contains a
  * given type, false otherwise.
  * given type, false otherwise.
  * @tparam List Type list.
  * @tparam List Type list.
  * @tparam Type Type to look for.
  * @tparam Type Type to look for.
@@ -530,7 +530,7 @@ template<typename Type>
 using value_list_unique_t = value_list_unique<Type>::type;
 using value_list_unique_t = value_list_unique<Type>::type;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a value list contains
+ * @brief Provides the member constant `value` equal to true if a value list contains
  * a given value, false otherwise.
  * a given value, false otherwise.
  * @tparam List Value list.
  * @tparam List Value list.
  * @tparam Value Value to look for.
  * @tparam Value Value to look for.
@@ -632,7 +632,7 @@ template<typename Ret, typename Func, typename Args>
 inline constexpr bool is_applicable_r_v = is_applicable_r<Ret, Func, Args>::value;
 inline constexpr bool is_applicable_r_v = is_applicable_r<Ret, Func, Args>::value;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a given type is
+ * @brief Provides the member constant `value` equal to true if a given type is
  * complete, false otherwise.
  * complete, false otherwise.
  * @tparam Type The type to test.
  * @tparam Type The type to test.
  */
  */
@@ -652,7 +652,7 @@ template<typename Type>
 inline constexpr bool is_complete_v = is_complete<Type>::value;
 inline constexpr bool is_complete_v = is_complete<Type>::value;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a given type is an
+ * @brief Provides the member constant `value` equal to true if a given type is an
  * iterator, false otherwise.
  * iterator, false otherwise.
  * @tparam Type The type to test.
  * @tparam Type The type to test.
  */
  */
@@ -685,7 +685,7 @@ template<typename Type>
 inline constexpr bool is_iterator_v = is_iterator<Type>::value;
 inline constexpr bool is_iterator_v = is_iterator<Type>::value;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a given type is both
+ * @brief Provides the member constant `value` equal to true if a given type is both
  * an empty and non-final class, false otherwise.
  * an empty and non-final class, false otherwise.
  * @tparam Type The type to test
  * @tparam Type The type to test
  */
  */
@@ -700,7 +700,7 @@ template<typename Type>
 inline constexpr bool is_ebco_eligible_v = is_ebco_eligible<Type>::value;
 inline constexpr bool is_ebco_eligible_v = is_ebco_eligible<Type>::value;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if `Type::is_transparent`
+ * @brief Provides the member constant `value` equal to true if `Type::is_transparent`
  * is valid and denotes a type, false otherwise.
  * is valid and denotes a type, false otherwise.
  * @tparam Type The type to test.
  * @tparam Type The type to test.
  */
  */
@@ -781,7 +781,7 @@ template<typename Type>
 /*! @endcond */
 /*! @endcond */
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a given type is
+ * @brief Provides the member constant `value` equal to true if a given type is
  * equality comparable, false otherwise.
  * equality comparable, false otherwise.
  * @tparam Type The type to test.
  * @tparam Type The type to test.
  */
  */

+ 1 - 1
src/entt/meta/policy.hpp

@@ -54,7 +54,7 @@ struct as_is_t final: private internal::meta_policy {
 };
 };
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a type also is a meta
+ * @brief Provides the member constant `value` equal to true if a type also is a meta
  * policy, false otherwise.
  * policy, false otherwise.
  * @tparam Type Type to check.
  * @tparam Type Type to check.
  */
  */

+ 1 - 1
src/entt/meta/type_traits.hpp

@@ -28,7 +28,7 @@ template<typename>
 struct meta_associative_container_traits;
 struct meta_associative_container_traits;
 
 
 /**
 /**
- * @brief Provides the member constant `value` to true if a given type is a
+ * @brief Provides the member constant `value` equal to true if a given type is a
  * pointer-like type from the point of view of the meta system, false otherwise.
  * pointer-like type from the point of view of the meta system, false otherwise.
  */
  */
 template<typename>
 template<typename>

Некоторые файлы не были показаны из-за большого количества измененных файлов