From 4974d136005ec9ab6f62e10e6ce5e514a8d0d678 Mon Sep 17 00:00:00 2001 From: rbock Date: Thu, 21 Aug 2014 11:44:07 +0200 Subject: [PATCH] Fixed all_of(table_alias) --- 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 7cc58a9f..821412f6 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)