0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Fixed all_of(table_alias)

This commit is contained in:
rbock 2014-08-21 11:44:07 +02:00
parent 9f35e33151
commit 4974d13600

View File

@ -54,7 +54,7 @@ namespace sqlpp
static_assert(required_tables_of<Table>::size::value == 0, "table aliases must not depend on external tables"); static_assert(required_tables_of<Table>::size::value == 0, "table aliases must not depend on external tables");
using _name_t = typename AliasProvider::_name_t; using _name_t = typename AliasProvider::_name_t;
using _column_tuple_t = std::tuple<column_t<Table, ColumnSpec>...>; using _column_tuple_t = std::tuple<column_t<table_alias_t, ColumnSpec>...>;
table_alias_t(Table table): table_alias_t(Table table):
_table(table) _table(table)