mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Simplified serializer a bit
This commit is contained in:
parent
f02a9ce3d0
commit
d34c22ca5a
@ -31,7 +31,6 @@
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
template<typename Expression>
|
||||
struct assert_serializer_specialization_t
|
||||
{
|
||||
using type = std::false_type;
|
||||
@ -46,7 +45,7 @@ namespace sqlpp
|
||||
template<typename Context, typename T, typename Enable = void>
|
||||
struct serializer_t
|
||||
{
|
||||
using _serialize_check = assert_serializer_specialization_t<T>;
|
||||
using _serialize_check = assert_serializer_specialization_t;
|
||||
|
||||
static void _(const T& t, Context& context)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user