Skip to content

Commit b429f84

Browse files
committed
Added a deduction guide in a unit test file
1 parent f6ac5d1 commit b429f84

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

tests/ast_iterator_tests.cpp

+9-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ using internal::column_alias;
1010
using internal::column_pointer;
1111
using internal::iterate_ast;
1212

13-
#if __cpp_generic_lambdas >= 201707L
13+
#ifdef SQLITE_ORM_EXPLICIT_GENERIC_LAMBDA_SUPPORTED
1414
template<class... L>
15-
struct overload : L... {
15+
struct overloaded : L... {
1616
using L::operator()...;
1717
};
18+
#if __cpp_deduction_guides < 201907L
19+
template<class... L>
20+
overloaded(L...) -> overloaded<L...>;
21+
#endif
1822
#endif
1923

2024
TEST_CASE("ast_iterator") {
@@ -28,8 +32,8 @@ TEST_CASE("ast_iterator") {
2832
const auto lambda = [&typeIndexes](auto& value) {
2933
typeIndexes.push_back(typeid(value));
3034
};
31-
#if __cpp_generic_lambdas >= 201707L
32-
const auto nodeLambda = overload(
35+
#ifdef SQLITE_ORM_EXPLICIT_GENERIC_LAMBDA_SUPPORTED
36+
const auto nodeLambda = overloaded(
3337
[&typeIndexes]<class UDF, class... CallArgs>(polyfill::bool_constant<true>,
3438
const internal::function_call<UDF, CallArgs...>& udfCall) {
3539
typeIndexes.push_back(typeid(udfCall.name));
@@ -441,7 +445,7 @@ TEST_CASE("ast_iterator") {
441445
expected.push_back(typeid(std::string));
442446
iterate_ast(expression, lambda);
443447
}
444-
#if __cpp_generic_lambdas >= 201707L
448+
#ifdef SQLITE_ORM_EXPLICIT_GENERIC_LAMBDA_SUPPORTED
445449
SECTION("node expressions") {
446450
struct Func {
447451
static const char* name();

0 commit comments

Comments
 (0)