summaryrefslogtreecommitdiffstats
path: root/src/core/crypto/xts_encryption_layer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/crypto/xts_encryption_layer.h')
-rw-r--r--src/core/crypto/xts_encryption_layer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/crypto/xts_encryption_layer.h b/src/core/crypto/xts_encryption_layer.h
index 7a1f1dc64..5f8f00fe7 100644
--- a/src/core/crypto/xts_encryption_layer.h
+++ b/src/core/crypto/xts_encryption_layer.h
@@ -15,7 +15,7 @@ class XTSEncryptionLayer : public EncryptionLayer {
public:
XTSEncryptionLayer(FileSys::VirtualFile base, Key256 key);
- size_t Read(u8* data, size_t length, size_t offset) const override;
+ std::size_t Read(u8* data, std::size_t length, std::size_t offset) const override;
private:
// Must be mutable as operations modify cipher contexts.