aboutsummaryrefslogtreecommitdiff
path: root/src/FATStorage.h
diff options
context:
space:
mode:
authorJesse Talavera <jesse@jesse.tg>2023-12-26 10:34:04 -0500
committerGitHub <noreply@github.com>2023-12-26 16:34:04 +0100
commitd55a384c8807cd0962399dac69e8ee1a9d5c53fd (patch)
treed6a75dcb78f9ff108d3776a2f38a85992ec39304 /src/FATStorage.h
parent740489f7a4a848bd3f96f1c911a6c7db5f6cc27f (diff)
Apply some quick hotfixes (#1931)
Diffstat (limited to 'src/FATStorage.h')
-rw-r--r--src/FATStorage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FATStorage.h b/src/FATStorage.h
index 1e89b76..48a411b 100644
--- a/src/FATStorage.h
+++ b/src/FATStorage.h
@@ -48,8 +48,8 @@ class FATStorage
{
public:
FATStorage(const std::string& filename, u64 size, bool readonly, const std::optional<std::string>& sourcedir = std::nullopt);
- FATStorage(const FATStorageArgs& args) noexcept;
- FATStorage(FATStorageArgs&& args) noexcept;
+ explicit FATStorage(const FATStorageArgs& args) noexcept;
+ explicit FATStorage(FATStorageArgs&& args) noexcept;
FATStorage(FATStorage&& other) noexcept;
FATStorage(const FATStorage& other) = delete;
FATStorage& operator=(const FATStorage& other) = delete;