early-access version 2853
This commit is contained in:
66
externals/vcpkg/ports/websocketpp/cxx20.patch
vendored
Executable file
66
externals/vcpkg/ports/websocketpp/cxx20.patch
vendored
Executable file
@@ -0,0 +1,66 @@
|
||||
diff --git "a/websocketpp/endpoint.hpp" "b/websocketpp/endpoint.hpp"
|
||||
index c124b1d..9ce8a62 100644
|
||||
--- "a/websocketpp/endpoint.hpp"
|
||||
+++ "b/websocketpp/endpoint.hpp"
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
|
||||
|
||||
/// Destructor
|
||||
- ~endpoint<connection,config>() {}
|
||||
+ ~endpoint() {}
|
||||
|
||||
#ifdef _WEBSOCKETPP_DEFAULT_DELETE_FUNCTIONS_
|
||||
// no copy constructor because endpoints are not copyable
|
||||
diff --git "a/websocketpp/logger/basic.hpp" "b/websocketpp/logger/basic.hpp"
|
||||
index 8451413..4c9d836 100644
|
||||
--- "a/websocketpp/logger/basic.hpp"
|
||||
+++ "b/websocketpp/logger/basic.hpp"
|
||||
@@ -58,33 +58,33 @@ namespace log {
|
||||
template <typename concurrency, typename names>
|
||||
class basic {
|
||||
public:
|
||||
- basic<concurrency,names>(channel_type_hint::value h =
|
||||
+ basic(channel_type_hint::value h =
|
||||
channel_type_hint::access)
|
||||
: m_static_channels(0xffffffff)
|
||||
, m_dynamic_channels(0)
|
||||
, m_out(h == channel_type_hint::error ? &std::cerr : &std::cout) {}
|
||||
|
||||
- basic<concurrency,names>(std::ostream * out)
|
||||
+ basic(std::ostream * out)
|
||||
: m_static_channels(0xffffffff)
|
||||
, m_dynamic_channels(0)
|
||||
, m_out(out) {}
|
||||
|
||||
- basic<concurrency,names>(level c, channel_type_hint::value h =
|
||||
+ basic(level c, channel_type_hint::value h =
|
||||
channel_type_hint::access)
|
||||
: m_static_channels(c)
|
||||
, m_dynamic_channels(0)
|
||||
, m_out(h == channel_type_hint::error ? &std::cerr : &std::cout) {}
|
||||
|
||||
- basic<concurrency,names>(level c, std::ostream * out)
|
||||
+ basic(level c, std::ostream * out)
|
||||
: m_static_channels(c)
|
||||
, m_dynamic_channels(0)
|
||||
, m_out(out) {}
|
||||
|
||||
/// Destructor
|
||||
- ~basic<concurrency,names>() {}
|
||||
+ ~basic() {}
|
||||
|
||||
/// Copy constructor
|
||||
- basic<concurrency,names>(basic<concurrency,names> const & other)
|
||||
+ basic(basic<concurrency,names> const & other)
|
||||
: m_static_channels(other.m_static_channels)
|
||||
, m_dynamic_channels(other.m_dynamic_channels)
|
||||
, m_out(other.m_out)
|
||||
@@ -97,7 +97,7 @@ public:
|
||||
|
||||
#ifdef _WEBSOCKETPP_MOVE_SEMANTICS_
|
||||
/// Move constructor
|
||||
- basic<concurrency,names>(basic<concurrency,names> && other)
|
||||
+ basic(basic<concurrency,names> && other)
|
||||
: m_static_channels(other.m_static_channels)
|
||||
, m_dynamic_channels(other.m_dynamic_channels)
|
||||
, m_out(other.m_out)
|
Reference in New Issue
Block a user