To lhs,rhs

This commit is contained in:
Dr. Patrick Urbanke
2025-05-03 16:07:04 +02:00
parent b108491135
commit 030f599e66

View File

@@ -5,8 +5,8 @@ namespace sqlgen::transpilation::conditions {
template <class CondType1, class CondType2>
struct And {
CondType1 cond1;
CondType2 cond2;
CondType1 lhs;
CondType2 rhs;
};
template <class OpType1, class OpType2>
@@ -47,8 +47,8 @@ struct LesserThan {
template <class CondType1, class CondType2>
struct Or {
CondType1 cond1;
CondType2 cond2;
CondType1 lhs;
CondType2 rhs;
};
} // namespace sqlgen::transpilation::conditions