diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-07-28 21:39:42 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-01 00:16:54 -0400 |
commit | 239a3113e4c6a53a2c7b12e67a0f21afae24b0aa (patch) | |
tree | 027bc4288f08be240d0b9b2a5f6c6431e76b8b4f /src/core/crypto/encryption_layer.cpp | |
parent | 22342487e8fb851a9837db22408db56240aa6931 (diff) |
Make XCI comply to review and style guidelines
Diffstat (limited to 'src/core/crypto/encryption_layer.cpp')
-rw-r--r-- | src/core/crypto/encryption_layer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/crypto/encryption_layer.cpp b/src/core/crypto/encryption_layer.cpp index 4e243051e2..4204527e33 100644 --- a/src/core/crypto/encryption_layer.cpp +++ b/src/core/crypto/encryption_layer.cpp @@ -4,7 +4,7 @@ #include "core/crypto/encryption_layer.h" -namespace Crypto { +namespace Core::Crypto { EncryptionLayer::EncryptionLayer(FileSys::VirtualFile base_) : base(std::move(base_)) {} @@ -39,4 +39,4 @@ size_t EncryptionLayer::Write(const u8* data, size_t length, size_t offset) { bool EncryptionLayer::Rename(std::string_view name) { return base->Rename(name); } -} // namespace Crypto +} // namespace Core::Crypto |