Skip to content

Commit 68bfced

Browse files
Renamed template types
1 parent 3e55cc4 commit 68bfced

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

include/sqlgen/select_from.hpp

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -96,20 +96,20 @@ auto select_from_impl(const Result<Ref<Connection>>& _res,
9696
});
9797
}
9898

99-
template <class _TableOrQueryType, class _AliasType, class _FieldsType,
100-
class _JoinsType = Nothing, class _WhereType = Nothing,
101-
class _GroupByType = Nothing, class _OrderByType = Nothing,
102-
class _LimitType = Nothing, class _ToType = Nothing>
99+
template <class TableOrQueryT, class AliasT, class FieldsT,
100+
class JoinsT = Nothing, class WhereT = Nothing,
101+
class GroupByT = Nothing, class OrderByT = Nothing,
102+
class LimitT = Nothing, class ToT = Nothing>
103103
struct SelectFrom {
104-
using TableOrQueryType = _TableOrQueryType;
105-
using AliasType = _AliasType;
106-
using FieldsType = _FieldsType;
107-
using JoinsType = _JoinsType;
108-
using WhereType = _WhereType;
109-
using GroupByType = _GroupByType;
110-
using OrderByType = _OrderByType;
111-
using LimitType = _LimitType;
112-
using ToType = _ToType;
104+
using TableOrQueryType = TableOrQueryT;
105+
using AliasType = AliasT;
106+
using FieldsType = FieldsT;
107+
using JoinsType = JoinsT;
108+
using WhereType = WhereT;
109+
using GroupByType = GroupByT;
110+
using OrderByType = OrderByT;
111+
using LimitType = LimitT;
112+
using ToType = ToT;
113113

114114
auto operator()(const auto& _conn) const {
115115
using TableTupleType =

0 commit comments

Comments
 (0)