stl: concepts.hpp -> iterator.hpp

This commit is contained in:
skypjack
2026-01-29 13:54:55 +01:00
parent b00038a034
commit 9c66e7219d
16 changed files with 17 additions and 17 deletions

View File

@@ -194,8 +194,8 @@ if(ENTT_INCLUDE_HEADERS)
signal/emitter.hpp
signal/fwd.hpp
signal/sigh.hpp
stl/concepts.hpp
stl/functional.hpp
stl/iterator.hpp
stl/memory.hpp
tools/davey.hpp
entt.hpp

View File

@@ -20,7 +20,7 @@
#include "../core/iterator.hpp"
#include "../core/memory.hpp"
#include "../core/type_traits.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "fwd.hpp"
namespace entt {

View File

@@ -18,7 +18,7 @@
#include "../core/bit.hpp"
#include "../core/compressed_pair.hpp"
#include "../core/type_traits.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "fwd.hpp"
namespace entt {

View File

@@ -7,8 +7,8 @@
#include <iterator>
#include <utility>
#include <vector>
#include "../stl/concepts.hpp"
#include "../stl/functional.hpp"
#include "../stl/iterator.hpp"
namespace entt {

View File

@@ -6,7 +6,7 @@
#include <memory>
#include <type_traits>
#include <utility>
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
namespace entt {

View File

@@ -14,7 +14,7 @@
#include "../core/iterator.hpp"
#include "../core/type_info.hpp"
#include "../core/type_traits.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "entity.hpp"
#include "fwd.hpp"

View File

@@ -8,7 +8,7 @@
#include "../core/any.hpp"
#include "../core/type_info.hpp"
#include "../signal/sigh.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "entity.hpp"
#include "fwd.hpp"

View File

@@ -22,8 +22,8 @@
#include "../core/memory.hpp"
#include "../core/type_info.hpp"
#include "../core/type_traits.hpp"
#include "../stl/concepts.hpp"
#include "../stl/functional.hpp"
#include "../stl/iterator.hpp"
#include "entity.hpp"
#include "fwd.hpp"
#include "group.hpp"

View File

@@ -11,7 +11,7 @@
#include "../config/config.h"
#include "../container/dense_map.hpp"
#include "../core/type_traits.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "entity.hpp"
#include "fwd.hpp"
#include "view.hpp"

View File

@@ -14,7 +14,7 @@
#include "../core/any.hpp"
#include "../core/bit.hpp"
#include "../core/type_info.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "entity.hpp"
#include "fwd.hpp"

View File

@@ -15,7 +15,7 @@
#include "../core/iterator.hpp"
#include "../core/memory.hpp"
#include "../core/type_info.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "../stl/memory.hpp"
#include "component.hpp"
#include "entity.hpp"

View File

@@ -65,7 +65,7 @@ namespace entt {}
#include "signal/dispatcher.hpp"
#include "signal/emitter.hpp"
#include "signal/sigh.hpp"
#include "stl/concepts.hpp"
#include "stl/functional.hpp"
#include "stl/iterator.hpp"
#include "stl/memory.hpp"
// IWYU pragma: end_exports

View File

@@ -16,8 +16,8 @@
#include "../core/compressed_pair.hpp"
#include "../core/fwd.hpp"
#include "../core/iterator.hpp"
#include "../stl/concepts.hpp"
#include "../stl/functional.hpp"
#include "../stl/iterator.hpp"
#include "adjacency_matrix.hpp"
#include "fwd.hpp"

View File

@@ -17,7 +17,7 @@
#include "../core/type_traits.hpp"
#include "../core/utility.hpp"
#include "../locator/locator.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "adl_pointer.hpp"
#include "context.hpp"
#include "fwd.hpp"

View File

@@ -8,7 +8,7 @@
#include <utility>
#include "../core/fwd.hpp"
#include "../core/iterator.hpp"
#include "../stl/concepts.hpp"
#include "../stl/iterator.hpp"
#include "context.hpp"
namespace entt {

View File

@@ -1,5 +1,5 @@
#ifndef ENTT_STL_CONCEPTS_HPP
#define ENTT_STL_CONCEPTS_HPP
#ifndef ENTT_STL_ITERATOR_HPP
#define ENTT_STL_ITERATOR_HPP
#include "../config/config.h"