summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/CHANGES2
-rw-r--r--cpp/include/IceSSL/Plugin.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/cpp/CHANGES b/cpp/CHANGES
index 7f1711b96c9..b1fad2b4797 100644
--- a/cpp/CHANGES
+++ b/cpp/CHANGES
@@ -1,6 +1,8 @@
Changes since version 3.2.X (binary incompatible)
-------------------------------------------------
+- Added "public" keyword to the definition of IceSSL::PublicKey.
+
- Fixed a bug in slice2freeze in which it was not properly handling
the "cpp:type:wstring" metadata, which would result in narrow
strings being used in generated code when wstring should have been
diff --git a/cpp/include/IceSSL/Plugin.h b/cpp/include/IceSSL/Plugin.h
index ff700b7ec52..b8ed5633eb2 100644
--- a/cpp/include/IceSSL/Plugin.h
+++ b/cpp/include/IceSSL/Plugin.h
@@ -123,6 +123,8 @@ typedef IceUtil::Handle<Certificate> CertificatePtr;
//
class ICE_SSL_API PublicKey : public IceUtil::Shared
{
+public:
+
~PublicKey();
EVP_PKEY* key() const;