Silence AES warning
This warning came about after 46ad8b9d68
In file included from /home/ports/pobj/dolphin-5.0.0.20230429/dolphin-5.0.0.20230429/Source/Core/Core/IOS/WFS/WFSI.cpp:4:
/home/ports/pobj/dolphin-5.0.0.20230429/dolphin-5.0.0.20230429/Source/Core/Core/IOS/WFS/WFSI.h:54:6: warning: private field 'm_aes_key' is not used [-Wunused-private-field]
u8 m_aes_key[0x10] = {};
^
This commit is contained in:
parent
68c3b1fb7d
commit
49afa23f95
|
@ -51,7 +51,6 @@ private:
|
||||||
std::string m_device_name;
|
std::string m_device_name;
|
||||||
|
|
||||||
std::unique_ptr<Common::AES::Context> m_aes_ctx{};
|
std::unique_ptr<Common::AES::Context> m_aes_ctx{};
|
||||||
u8 m_aes_key[0x10] = {};
|
|
||||||
u8 m_aes_iv[0x10] = {};
|
u8 m_aes_iv[0x10] = {};
|
||||||
|
|
||||||
ES::TMDReader m_tmd;
|
ES::TMDReader m_tmd;
|
||||||
|
|
Loading…
Reference in New Issue