mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-27 18:30:53 +02:00
Merge pull request #1154 from scrossuk/cpp_master
Work around MSVC C++20 modules error for nested msgpack::object::with_zone
This commit is contained in:
commit
1876badbae
@ -32,11 +32,11 @@ struct object_kv {
|
|||||||
msgpack::object val;
|
msgpack::object val;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct object::with_zone : msgpack::object {
|
struct object_with_zone_type : msgpack::object {
|
||||||
with_zone(msgpack::zone& z) : zone(z) { }
|
object_with_zone_type(msgpack::zone& z) : zone(z) { }
|
||||||
msgpack::zone& zone;
|
msgpack::zone& zone;
|
||||||
private:
|
private:
|
||||||
with_zone();
|
object_with_zone_type();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,6 +68,8 @@ public:
|
|||||||
|
|
||||||
#endif // !defined(MSGPACK_USE_CPP03)
|
#endif // !defined(MSGPACK_USE_CPP03)
|
||||||
|
|
||||||
|
struct object_with_zone_type;
|
||||||
|
|
||||||
/// Object class that corresponding to MessagePack format object
|
/// Object class that corresponding to MessagePack format object
|
||||||
/**
|
/**
|
||||||
* See https://github.com/msgpack/msgpack-c/wiki/v1_1_cpp_object
|
* See https://github.com/msgpack/msgpack-c/wiki/v1_1_cpp_object
|
||||||
@ -219,7 +221,8 @@ struct object {
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
object& operator=(const T& v);
|
object& operator=(const T& v);
|
||||||
|
|
||||||
struct with_zone;
|
// Not a nested struct (i.e. 'struct with_zone;') to work around MSVC C++20 modules error C2504
|
||||||
|
typedef object_with_zone_type with_zone;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
struct implicit_type;
|
struct implicit_type;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user