Parcourir la source

meta: add parentheses around max to prevent conflicts with max macro on Windows (#1278)

Christoph il y a 8 mois
Parent
commit
09b0e7f528
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/entt/meta/fwd.hpp

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

@@ -28,7 +28,7 @@ template<typename>
 class meta_factory;
 
 /*! @brief Used to identicate that a sequence container has not a fixed size. */
-inline constexpr std::size_t meta_dynamic_extent = std::numeric_limits<std::size_t>::max();
+inline constexpr std::size_t meta_dynamic_extent = (std::numeric_limits<std::size_t>::max)();
 
 } // namespace entt