@@ -10,11 +10,15 @@ using internal::column_alias;
10
10
using internal::column_pointer;
11
11
using internal::iterate_ast;
12
12
13
- #if __cpp_generic_lambdas >= 201707L
13
+ #ifdef SQLITE_ORM_EXPLICIT_GENERIC_LAMBDA_SUPPORTED
14
14
template <class ... L>
15
- struct overload : L... {
15
+ struct overloaded : L... {
16
16
using L::operator ()...;
17
17
};
18
+ #if __cpp_deduction_guides < 201907L
19
+ template <class ... L>
20
+ overloaded (L...) -> overloaded<L...>;
21
+ #endif
18
22
#endif
19
23
20
24
TEST_CASE (" ast_iterator" ) {
@@ -28,8 +32,8 @@ TEST_CASE("ast_iterator") {
28
32
const auto lambda = [&typeIndexes](auto & value) {
29
33
typeIndexes.push_back (typeid (value));
30
34
};
31
- #if __cpp_generic_lambdas >= 201707L
32
- const auto nodeLambda = overload (
35
+ #ifdef SQLITE_ORM_EXPLICIT_GENERIC_LAMBDA_SUPPORTED
36
+ const auto nodeLambda = overloaded (
33
37
[&typeIndexes]<class UDF , class ... CallArgs>(polyfill::bool_constant<true >,
34
38
const internal::function_call<UDF, CallArgs...>& udfCall) {
35
39
typeIndexes.push_back (typeid (udfCall.name ));
@@ -441,7 +445,7 @@ TEST_CASE("ast_iterator") {
441
445
expected.push_back (typeid (std::string));
442
446
iterate_ast (expression, lambda);
443
447
}
444
- #if __cpp_generic_lambdas >= 201707L
448
+ #ifdef SQLITE_ORM_EXPLICIT_GENERIC_LAMBDA_SUPPORTED
445
449
SECTION (" node expressions" ) {
446
450
struct Func {
447
451
static const char * name ();
0 commit comments