From d1c2d2ad303bda1c49d453b460d6bbacf80240ca Mon Sep 17 00:00:00 2001 From: "anujk.sharma" Date: Mon, 6 Oct 2014 21:07:19 -0700 Subject: Replacing the OVERRIDE with override and FINAL with final in /src/crypto This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/632653002 Cr-Commit-Position: refs/heads/master@{#298360} --- crypto/ec_signature_creator_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/ec_signature_creator_impl.h') diff --git a/crypto/ec_signature_creator_impl.h b/crypto/ec_signature_creator_impl.h index 8ef67cd..f2ef9d6 100644 --- a/crypto/ec_signature_creator_impl.h +++ b/crypto/ec_signature_creator_impl.h @@ -17,10 +17,10 @@ class ECSignatureCreatorImpl : public ECSignatureCreator { virtual bool Sign(const uint8* data, int data_len, - std::vector* signature) OVERRIDE; + std::vector* signature) override; virtual bool DecodeSignature(const std::vector& der_sig, - std::vector* out_raw_sig) OVERRIDE; + std::vector* out_raw_sig) override; private: ECPrivateKey* key_; -- cgit v1.1