0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 04:47:18 +08:00

Removed obsolete tags from value types

This commit is contained in:
rbock 2014-08-25 06:05:42 +02:00
parent 83fd052cf5
commit 8d8b358092
4 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ namespace sqlpp
// boolean value type // boolean value type
struct boolean struct boolean
{ {
using _traits = make_traits<boolean, ::sqlpp::tag::is_boolean, ::sqlpp::tag::is_value_type>; using _traits = make_traits<boolean, ::sqlpp::tag::is_value_type>;
using _tag = ::sqlpp::tag::is_boolean; using _tag = ::sqlpp::tag::is_boolean;
using _cpp_value_type = bool; using _cpp_value_type = bool;

View File

@ -38,7 +38,7 @@ namespace sqlpp
// floating_point value type // floating_point value type
struct floating_point struct floating_point
{ {
using _traits = make_traits<floating_point, ::sqlpp::tag::is_floating_point, ::sqlpp::tag::is_value_type>; using _traits = make_traits<floating_point, ::sqlpp::tag::is_value_type>;
using _tag = ::sqlpp::tag::is_floating_point; using _tag = ::sqlpp::tag::is_floating_point;
using _cpp_value_type = double; using _cpp_value_type = double;

View File

@ -40,7 +40,7 @@ namespace sqlpp
// integral value type // integral value type
struct integral struct integral
{ {
using _traits = make_traits<integral, ::sqlpp::tag::is_integral, ::sqlpp::tag::is_value_type>; using _traits = make_traits<integral, ::sqlpp::tag::is_value_type>;
using _tag = ::sqlpp::tag::is_integral; using _tag = ::sqlpp::tag::is_integral;
using _cpp_value_type = int64_t; using _cpp_value_type = int64_t;

View File

@ -39,7 +39,7 @@ namespace sqlpp
// text value type // text value type
struct text struct text
{ {
using _traits = make_traits<text, ::sqlpp::tag::is_text, ::sqlpp::tag::is_value_type>; using _traits = make_traits<text, ::sqlpp::tag::is_value_type>;
using _tag = ::sqlpp::tag::is_text; using _tag = ::sqlpp::tag::is_text;
using _cpp_value_type = std::string; using _cpp_value_type = std::string;