We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67aae7 commit f40b487Copy full SHA for f40b487
1 file changed
tests/static_tests/iterator_t.cpp
@@ -179,11 +179,15 @@ TEST_CASE("can view and iterate mapped") {
179
180
#ifdef SQLITE_ORM_CPP20_CONCEPTS_SUPPORTED
181
STATIC_REQUIRE(storage_iterate_mapped<storage_type, Object>);
182
+#if !defined(__clang__) || (__clang_major__ >= 15)
183
STATIC_REQUIRE(storage_iterate_mapped_ref<storage_type, object_table, Object>);
184
+#endif
185
#ifdef SQLITE_ORM_WITH_CPP20_ALIASES
186
187
STATIC_REQUIRE(storage_iterate_mapped_ref<storage_type, object_alias, Object>);
188
#endif
189
190
191
192
#ifdef SQLITE_ORM_CPP23_GENERATOR_SUPPORTED
193
STATIC_REQUIRE(storage_yield_mapped<storage_type, Object, Object>);
0 commit comments