mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-19 17:37:45 +02:00
update jsonrpc++ to v1.2.2
This commit is contained in:
parent
0901544255
commit
e5a5903af4
1 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
_( )/ ___) / \ ( ( \( _ \( _ \ / __)( ) ( )
|
||||
/ \) \\___ \( O )/ / ) / ) __/( (__(_ _)(_ _)
|
||||
\____/(____/ \__/ \_)__)(__\_)(__) \___)(_) (_)
|
||||
version 1.2.1
|
||||
version 1.2.2
|
||||
https://github.com/badaix/jsonrpcpp
|
||||
|
||||
This file is part of jsonrpc++
|
||||
|
@ -71,6 +71,8 @@ public:
|
|||
|
||||
Entity(entity_t type);
|
||||
virtual ~Entity() = default;
|
||||
Entity(const Entity&) = default;
|
||||
Entity& operator=(const Entity&) = default;
|
||||
|
||||
bool is_exception();
|
||||
bool is_id();
|
||||
|
@ -99,7 +101,6 @@ class NullableEntity : public Entity
|
|||
public:
|
||||
NullableEntity(entity_t type);
|
||||
NullableEntity(entity_t type, std::nullptr_t);
|
||||
~NullableEntity() override = default;
|
||||
#ifdef _MSC_VER
|
||||
virtual operator bool() const
|
||||
#else
|
||||
|
@ -301,7 +302,6 @@ public:
|
|||
RpcException(const char* text);
|
||||
RpcException(const std::string& text);
|
||||
|
||||
~RpcException() override = default;
|
||||
const char* what() const noexcept override;
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue