Skip to content
Snippets Groups Projects
Commit 9232b3d5 authored by Thiago Macieira's avatar Thiago Macieira
Browse files

Fix compilation with ICC: missing "public" keyword in declaration

This change is correct. GCC wrongly accepted S60CertificateExtension
as covariant with Botan::Certificate_Extension even though the base
was inaccessible.

Reviewed-By: dt
parent 53985dbf
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ namespace { ...@@ -67,7 +67,7 @@ namespace {
/* /*
* X.509 S60 Certificate Extension * X.509 S60 Certificate Extension
*/ */
class S60CertificateExtension : Certificate_Extension class S60CertificateExtension : public Certificate_Extension
{ {
public: public:
OID oid_of() const; OID oid_of() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment