Explorar o código

stl: concepts.hpp -> iterator.hpp

skypjack hai 1 mes
pai
achega
9c66e7219d

+ 1 - 1
CMakeLists.txt

@@ -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

+ 1 - 1
src/entt/container/dense_map.hpp

@@ -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 {

+ 1 - 1
src/entt/container/dense_set.hpp

@@ -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 {

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

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

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

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

+ 1 - 1
src/entt/entity/group.hpp

@@ -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"
 

+ 1 - 1
src/entt/entity/mixin.hpp

@@ -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"
 

+ 1 - 1
src/entt/entity/registry.hpp

@@ -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"

+ 1 - 1
src/entt/entity/snapshot.hpp

@@ -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"

+ 1 - 1
src/entt/entity/sparse_set.hpp

@@ -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"
 

+ 1 - 1
src/entt/entity/storage.hpp

@@ -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"

+ 1 - 1
src/entt/entt.hpp

@@ -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

+ 1 - 1
src/entt/graph/flow.hpp

@@ -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"
 

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

@@ -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"

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

@@ -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 {

+ 2 - 2
src/entt/stl/concepts.hpp → src/entt/stl/iterator.hpp

@@ -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"