aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorliamwhite <[email protected]>2024-02-21 10:43:05 -0500
committerGitHub <[email protected]>2024-02-21 16:43:05 +0100
commit9e1a67b950bf21ab01765c0026707571901088b6 (patch)
tree476af8117df19cadcb9fc245320b037992b3df20 /src/core/file_sys
parent60fc6df407e29932c0b7106e860603aaeea32812 (diff)
downloadyuzu-mainline-9e1a67b950bf21ab01765c0026707571901088b6.tar.gz
yuzu-mainline-9e1a67b950bf21ab01765c0026707571901088b6.zip
fs: add missing mutex header for member (#13106)
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/fssystem/fssystem_aes_xts_storage.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/file_sys/fssystem/fssystem_aes_xts_storage.h b/src/core/file_sys/fssystem/fssystem_aes_xts_storage.h
index f342efb57..0e83ca1b9 100644
--- a/src/core/file_sys/fssystem/fssystem_aes_xts_storage.h
+++ b/src/core/file_sys/fssystem/fssystem_aes_xts_storage.h
@@ -3,6 +3,7 @@
#pragma once
+#include <mutex>
#include <optional>
#include "core/crypto/aes_util.h"