From ef0672a97af8f3af74f29fd1a9cdc557b9ec75bd Mon Sep 17 00:00:00 2001 From: rbock Date: Fri, 26 Sep 2014 16:33:47 +0200 Subject: [PATCH] Minor cleanup --- include/sqlpp11/multi_column.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/sqlpp11/multi_column.h b/include/sqlpp11/multi_column.h index 4050968f..44288b83 100644 --- a/include/sqlpp11/multi_column.h +++ b/include/sqlpp11/multi_column.h @@ -66,10 +66,6 @@ namespace sqlpp return { *this }; } - - using _value_type = no_value_t; - using _is_multi_column = std::true_type; - std::tuple _columns; }; @@ -101,12 +97,6 @@ namespace sqlpp multi_column_alias_t& operator=(multi_column_alias_t&&) = default; ~multi_column_alias_t() = default; - struct _value_type: public no_value_t - { - using _is_selectable = std::true_type; - }; - using _is_multi_column = std::true_type; - std::tuple _columns; };