Author: gsim
Date: Fri May 24 11:14:53 2013
New Revision: 1486009
URL: http://svn.apache.org/r1486009
Log:
QPID-4855: fix compilation error with some compilers (merged from r1483436)
Modified:
qpid/branches/0.22/qpid/ (props changed)
qpid/branches/0.22/qpid/cpp/src/ (props changed)
qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.cpp
qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.h
Propchange: qpid/branches/0.22/qpid/
------------------------------------------------------------------------------
Merged /qpid/trunk/qpid:r1483436
Propchange: qpid/branches/0.22/qpid/cpp/src/
------------------------------------------------------------------------------
Merged /qpid/trunk/qpid/cpp/src:r1483436
Modified: qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.cpp
URL:
http://svn.apache.org/viewvc/qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.cpp?rev=1486009&r1=1486008&r2=1486009&view=diff
==============================================================================
--- qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.cpp (original)
+++ qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.cpp Fri May 24
11:14:53 2013
@@ -37,6 +37,7 @@ Sasl::Sasl(const std::string& id, Connec
sasl(qpid::SaslFactory::getInstance().create(c.username, c.password,
c.service, hostname_, c.minSsf, c.maxSsf, false)),
hostname(hostname_), readHeader(true), writeHeader(true),
haveOutput(false), state(NONE) {}
+Sasl::~Sasl() {}
std::size_t Sasl::decode(const char* buffer, std::size_t size)
{
size_t decoded = 0;
Modified: qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.h
URL:
http://svn.apache.org/viewvc/qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.h?rev=1486009&r1=1486008&r2=1486009&view=diff
==============================================================================
--- qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.h (original)
+++ qpid/branches/0.22/qpid/cpp/src/qpid/messaging/amqp/Sasl.h Fri May 24
11:14:53 2013
@@ -42,6 +42,7 @@ class Sasl : public qpid::sys::Codec, qp
{
public:
Sasl(const std::string& id, ConnectionContext& context, const std::string&
hostname);
+ ~Sasl();
std::size_t decode(const char* buffer, std::size_t size);
std::size_t encode(char* buffer, std::size_t size);
bool canEncode();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]