diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-21 19:57:33 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-21 19:57:33 +0200 |
commit | 04ee43ea683f5b9b591e10409b5e5a622e8a198a (patch) | |
tree | e3f9311e58d373c91a4ca926c5c84cd910dfa2b9 | |
parent | 376dccfc3d4f1ae6d2a4b8d5a93e55bcd5482f52 (diff) |
kill unused concept
-rw-r--r-- | src/chunk.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index 5e4f5392..d342d9d9 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -6,11 +6,6 @@ namespace floormat { -template<typename F, typename Tile> -concept tile_iterator_fn = requires(F fn, Tile& tile) { - { fn.operator()(tile, std::size_t{}, local_coords{}) } -> std::same_as<void>; -}; - template<typename T> class basic_tile_iterator; struct chunk final |