File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 27
27
#include " ast/match.h"
28
28
#include " ast/cast.h"
29
29
#include " ast/limit.h"
30
+ #include " ast/labeled_bindable.h"
30
31
31
32
namespace sqlite_orm {
32
33
Original file line number Diff line number Diff line change @@ -15851,6 +15851,8 @@ SQLITE_ORM_EXPORT namespace sqlite_orm {
15851
15851
15852
15852
// #include "ast/limit.h"
15853
15853
15854
+ // #include "ast/labeled_bindable.h"
15855
+
15854
15856
namespace sqlite_orm {
15855
15857
15856
15858
namespace internal {
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ TEST_CASE("ast_iterator") {
65
65
SECTION (" named" ) {
66
66
auto bindable = " @p" _param.create <int >();
67
67
auto node = select (bindable);
68
- expected.push_back (typeid (int ));
68
+ expected.push_back (typeid (bindable ));
69
69
iterate_ast (node, lambda);
70
70
}
71
71
#endif
You can’t perform that action at this time.
0 commit comments