aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkSHA1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/SkSHA1.h')
-rw-r--r--src/utils/SkSHA1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/SkSHA1.h b/src/utils/SkSHA1.h
index e7ede64640..aa0867fed3 100644
--- a/src/utils/SkSHA1.h
+++ b/src/utils/SkSHA1.h
@@ -24,12 +24,12 @@ public:
/** Processes input, adding it to the digest.
* Note that this treats the buffer as a series of uint8_t values.
*/
- bool write(const void* buffer, size_t size) SK_OVERRIDE {
+ bool write(const void* buffer, size_t size) override {
update(reinterpret_cast<const uint8_t*>(buffer), size);
return true;
}
- size_t bytesWritten() const SK_OVERRIDE { return SkToSizeT(this->byteCount); }
+ size_t bytesWritten() const override { return SkToSizeT(this->byteCount); }
/** Processes input, adding it to the digest. Calling this after finish is undefined. */
void update(const uint8_t* input, size_t length);