stl: include limits.hpp

This commit is contained in:
skypjack
2026-04-13 08:50:35 +02:00
parent e2418206da
commit 7674036b67
6 changed files with 17 additions and 3 deletions

View File

@@ -202,6 +202,7 @@ if(ENTT_INCLUDE_HEADERS)
stl/cstdint.hpp
stl/functional.hpp
stl/iterator.hpp
stl/limits.hpp
stl/memory.hpp
stl/tuple.hpp
stl/type_traits.hpp

View File

@@ -6,7 +6,6 @@
#include <compare>
#include <concepts>
#include <functional>
#include <limits>
#include <memory>
#include "../config/config.h"
#include "../core/bit.hpp"
@@ -16,6 +15,7 @@
#include "../core/type_traits.hpp"
#include "../stl/cstddef.hpp"
#include "../stl/iterator.hpp"
#include "../stl/limits.hpp"
#include "../stl/tuple.hpp"
#include "../stl/type_traits.hpp"
#include "../stl/utility.hpp"

View File

@@ -6,7 +6,6 @@
#include <compare>
#include <concepts>
#include <functional>
#include <limits>
#include <memory>
#include "../config/config.h"
#include "../core/bit.hpp"
@@ -14,6 +13,7 @@
#include "../core/type_traits.hpp"
#include "../stl/cstddef.hpp"
#include "../stl/iterator.hpp"
#include "../stl/limits.hpp"
#include "../stl/tuple.hpp"
#include "../stl/type_traits.hpp"
#include "../stl/utility.hpp"

View File

@@ -76,6 +76,7 @@ namespace entt::stl {}
#include "stl/cstdint.hpp"
#include "stl/functional.hpp"
#include "stl/iterator.hpp"
#include "stl/limits.hpp"
#include "stl/memory.hpp"
#include "stl/tuple.hpp"
#include "stl/type_traits.hpp"

View File

@@ -1,8 +1,8 @@
#ifndef ENTT_META_FWD_HPP
#define ENTT_META_FWD_HPP
#include <limits>
#include "../stl/cstddef.hpp"
#include "../stl/limits.hpp"
namespace entt {

12
src/entt/stl/limits.hpp Normal file
View File

@@ -0,0 +1,12 @@
#ifndef ENTT_STL_LIMITS_HPP
#define ENTT_STL_LIMITS_HPP
#include <limits>
/*! @cond ENTT_INTERNAL */
namespace entt::stl {
} // namespace entt::stl
/*! @endcond */
#endif