diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-08 01:38:11 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-08 01:38:11 +0200 |
commit | 036f48e9d9d13d3aa5b552c5e3997fa152aa6ba3 (patch) | |
tree | 17b10fbdfbc1293eeb18434e1a181ae4ebe67d1d /test | |
parent | 41f4f4b6f9ba5fa20bb41967dc8ef8020081e38e (diff) |
a
Diffstat (limited to 'test')
-rw-r--r-- | test/tile-iter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/tile-iter.cpp b/test/tile-iter.cpp index aea6b8b5..f930517f 100644 --- a/test/tile-iter.cpp +++ b/test/tile-iter.cpp @@ -27,10 +27,8 @@ bool app::test_tile_iter() // NOLINT(readability-function-size) static_assert(std::is_same_v<decltype(x), tile&>); for (const auto& [x, k, pt] : c) static_assert(std::is_same_v<decltype(x), const tile&>); -#if 1 for (auto [x, k, pt] : c) static_assert(std::is_same_v<decltype(x), tile&>); -#endif } return true; } |