Turned value_type::parameter_t into a non-template

This commit is contained in:
Roland Bock
2014-01-02 13:11:19 +01:00
parent 9d0746b15c
commit 1360b1d9db
13 changed files with 124 additions and 49 deletions

View File

@@ -41,7 +41,7 @@ namespace sqlpp
{
static_assert(is_text_t<Operand>::value, "Operand for like() has to be a text");
static_assert(is_text_t<Pattern>::value, "Pattern for like() has to be a text");
using _parameter_t = std::tuple<ValueType, Pattern>;
using _parameter_tuple_t = std::tuple<ValueType, Pattern>;
struct _value_type: public ValueType::_base_value_type // we require fully defined boolean here
{