Merge "Const modifiers"

am: 4efd353d8f

Change-Id: I8ae993749d5f2c58cc5ef23f90845cf5a0bf756d
This commit is contained in:
Tao Bao
2017-03-24 20:32:39 +00:00
committed by android-build-merger
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -376,7 +376,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);
}
};