Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/error.hpp 2014-01-10 22:18:21.010643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/error.hpp 2016-02-19 11:33:10.000000000 +0100
- @@ -33,6 +33,10 @@
- #include <websocketpp/common/cpp11.hpp>
- #include <websocketpp/common/system_error.hpp>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- namespace websocketpp {
- /// Combination error code / string type for returning two values
- @@ -122,7 +126,7 @@
- public:
- category() {}
- - char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + char const * name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp";
- }
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/transport/base/connection.hpp 2014-01-10 22:18:21.016643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/transport/base/connection.hpp 2016-02-19 11:31:56.000000000 +0100
- @@ -34,6 +34,10 @@
- #include <websocketpp/common/memory.hpp>
- #include <websocketpp/common/system_error.hpp>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- namespace websocketpp {
- /// Transport policies provide network connectivity and timers
- /**
- @@ -179,7 +183,7 @@
- public:
- category() {}
- - char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + char const * name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp.transport";
- }
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/transport/iostream/base.hpp 2014-01-10 22:18:21.016643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/transport/iostream/base.hpp 2016-02-19 11:30:51.000000000 +0100
- @@ -33,6 +33,10 @@
- #include <string>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- namespace websocketpp {
- namespace transport {
- /// Transport policy that uses STL iostream for I/O and does not support timers
- @@ -64,7 +68,7 @@
- public:
- category() {}
- - char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + char const * name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp.transport.iostream";
- }
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/extensions/extension.hpp 2014-01-10 22:18:21.010643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/extensions/extension.hpp 2016-02-19 11:29:40.000000000 +0100
- @@ -34,6 +34,10 @@
- #include <string>
- #include <vector>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- namespace websocketpp {
- /**
- @@ -62,7 +66,7 @@
- public:
- category() {}
- - const char *name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + const char *name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp.extension";
- }
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/transport/asio/base.hpp 2014-01-10 22:18:21.015643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/transport/asio/base.hpp 2016-02-19 11:28:48.000000000 +0100
- @@ -40,6 +40,10 @@
- #include <string>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- namespace websocketpp {
- namespace transport {
- /// Transport policy that uses boost::asio
- @@ -202,7 +206,7 @@
- /// Asio transport error category
- class category : public lib::error_category {
- public:
- - char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + char const * name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp.transport.asio";
- }
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/transport/asio/security/base.hpp 2014-01-10 22:18:21.016643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/transport/asio/security/base.hpp 2016-02-19 11:26:24.000000000 +0100
- @@ -39,6 +39,10 @@
- #include <iostream>
- #include <string>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- // Interface that sockets/security policies must implement
- /*
- @@ -102,7 +106,7 @@
- /// Error category related to asio transport socket policies
- class socket_category : public lib::error_category {
- public:
- - const char *name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + const char *name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp.transport.asio.socket";
- }
- --- PokerTH-1.1.1-src.orig/src/third_party/websocketpp/websocketpp/processors/base.hpp 2014-01-10 22:18:21.013643100 +0100
- +++ PokerTH-1.1.1-src/src/third_party/websocketpp/websocketpp/processors/base.hpp 2016-02-19 11:26:00.000000000 +0100
- @@ -38,6 +38,10 @@
- #include <map>
- #include <string>
- +#if __cplusplus == 199711L
- +# define noexcept
- +#endif
- +
- namespace websocketpp {
- namespace processor {
- @@ -159,7 +163,7 @@
- public:
- processor_category() {}
- - char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- + char const * name() const noexcept _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
- return "websocketpp.processor";
- }
Advertisement
Add Comment
Please, Sign In to add comment