From a9339b54ad462462b837c3eeb8d6dad301bcf719 Mon Sep 17 00:00:00 2001 From: rbock Date: Thu, 21 Aug 2014 13:00:40 +0200 Subject: [PATCH] Fixed all_of(alias_table) For real this time, I hope :-) --- include/sqlpp11/table_alias.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sqlpp11/table_alias.h b/include/sqlpp11/table_alias.h index 821412f6..94ea6716 100644 --- a/include/sqlpp11/table_alias.h +++ b/include/sqlpp11/table_alias.h @@ -54,7 +54,7 @@ namespace sqlpp static_assert(required_tables_of::size::value == 0, "table aliases must not depend on external tables"); using _name_t = typename AliasProvider::_name_t; - using _column_tuple_t = std::tuple...>; + using _column_tuple_t = std::tuple...>; table_alias_t(Table table): _table(table)