mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-06-25 22:15:23 +02:00
Removed Enabler2.
This commit is contained in:
parent
241f001d17
commit
9416c7cc5c
@ -32,14 +32,15 @@ struct pack : v2::adaptor::pack<T, Enabler> {
|
||||
};
|
||||
|
||||
template <typename T, typename Enabler>
|
||||
struct object<
|
||||
T,
|
||||
Enabler,
|
||||
typename msgpack::enable_if<
|
||||
!msgpack::is_same<T, std::string>::value &&
|
||||
!msgpack::is_array<T>::value
|
||||
>::type>
|
||||
: v2::adaptor::object<T, Enabler> {
|
||||
struct object
|
||||
: v2::adaptor::object<
|
||||
T,
|
||||
typename msgpack::enable_if<
|
||||
!msgpack::is_same<T, std::string>::value &&
|
||||
!msgpack::is_array<T>::value,
|
||||
Enabler
|
||||
>::type
|
||||
> {
|
||||
};
|
||||
|
||||
template <typename T, typename Enabler>
|
||||
|
@ -30,7 +30,7 @@ struct convert;
|
||||
template <typename T, typename Enabler = void>
|
||||
struct pack;
|
||||
|
||||
template <typename T, typename Enabler = void, typename Enabler2 = void>
|
||||
template <typename T, typename Enabler = void>
|
||||
struct object;
|
||||
|
||||
template <typename T, typename Enabler = void>
|
||||
|
Loading…
x
Reference in New Issue
Block a user