aboutsummaryrefslogtreecommitdiffstats
path: root/vmime/security/cert/certificate.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'vmime/security/cert/certificate.hpp')
-rw-r--r--vmime/security/cert/certificate.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmime/security/cert/certificate.hpp b/vmime/security/cert/certificate.hpp
index eb964286..440a1a8f 100644
--- a/vmime/security/cert/certificate.hpp
+++ b/vmime/security/cert/certificate.hpp
@@ -56,7 +56,7 @@ public:
*
* @return the version of this certificate
*/
- virtual const int getVersion() const = 0;
+ virtual int getVersion() const = 0;
/** Checks if two certificates are the same.
*
@@ -64,7 +64,7 @@ public:
* @return true if the two certificates are the same,
* false otherwise
*/
- virtual const bool equals(ref <const certificate> other) const = 0;
+ virtual bool equals(ref <const certificate> other) const = 0;
};