summaryrefslogtreecommitdiffstats
path: root/verifier.cpp
diff options
context:
space:
mode:
authorMikhail Lappo <miklelappo@gmail.com>2017-03-23 21:44:26 +0100
committerMikhail Lappo <miklelappo@gmail.com>2017-03-23 21:52:30 +0100
commitb49767c0bacb714e14f988423e14832689c6faf2 (patch)
treed9263ecace61d37381854e4dcc5d41cc514173b2 /verifier.cpp
parentRemoved C-style casts (diff)
downloadandroid_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.tar
android_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.tar.gz
android_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.tar.bz2
android_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.tar.lz
android_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.tar.xz
android_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.tar.zst
android_bootable_recovery-b49767c0bacb714e14f988423e14832689c6faf2.zip
Diffstat (limited to 'verifier.cpp')
-rw-r--r--verifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/verifier.cpp b/verifier.cpp
index e9d540cdb..23142c120 100644
--- a/verifier.cpp
+++ b/verifier.cpp
@@ -370,7 +370,7 @@ std::unique_ptr<RSA, RSADeleter> parse_rsa_key(FILE* file, uint32_t exponent) {
}
struct BNDeleter {
- void operator()(BIGNUM* bn) {
+ void operator()(BIGNUM* bn) const {
BN_free(bn);
}
};