diff options
author | Liam <byteslice@airmail.cc> | 2022-06-07 18:56:38 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-06-13 20:09:30 -0400 |
commit | d11547024c2c14b913ed8743de5e345260e3c19f (patch) | |
tree | 249f96ff849b6a509d46295e78ae9c3f91d9ec20 /src | |
parent | 6f59e2676bed88d7a31114d6fd1e147a04c09bac (diff) |
general: fix compilation on GCC 12
Diffstat (limited to 'src')
-rw-r--r-- | src/core/file_sys/content_archive.cpp | 2 | ||||
-rw-r--r-- | src/shader_recompiler/frontend/maxwell/control_flow.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/content_archive.cpp b/src/core/file_sys/content_archive.cpp index 93f7844183..78e56bbbd2 100644 --- a/src/core/file_sys/content_archive.cpp +++ b/src/core/file_sys/content_archive.cpp @@ -419,7 +419,7 @@ std::optional<Core::Crypto::Key128> NCA::GetKeyAreaKey(NCASectionCryptoType type Core::Crypto::Mode::ECB); cipher.Transcode(key_area.data(), key_area.size(), key_area.data(), Core::Crypto::Op::Decrypt); - Core::Crypto::Key128 out; + Core::Crypto::Key128 out{}; if (type == NCASectionCryptoType::XTS) { std::copy(key_area.begin(), key_area.begin() + 0x10, out.begin()); } else if (type == NCASectionCryptoType::CTR || type == NCASectionCryptoType::BKTR) { diff --git a/src/shader_recompiler/frontend/maxwell/control_flow.h b/src/shader_recompiler/frontend/maxwell/control_flow.h index 2487b9b0b6..1ce45b3a50 100644 --- a/src/shader_recompiler/frontend/maxwell/control_flow.h +++ b/src/shader_recompiler/frontend/maxwell/control_flow.h @@ -58,7 +58,7 @@ public: [[nodiscard]] Stack Remove(Token token) const; private: - boost::container::small_vector<StackEntry, 3> entries; + std::vector<StackEntry> entries; }; struct IndirectBranch { |