mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-19 00:47:57 +00:00
file_sys: Make a few single-argument constructors explicit
Prevents implicit conversions.
This commit is contained in:
parent
7da33afec8
commit
6ba0395316
8 changed files with 10 additions and 10 deletions
|
@ -17,7 +17,7 @@ namespace FileSys {
|
|||
/// File system interface to the NCCH archive
|
||||
class ArchiveFactory_NCCH final : public ArchiveFactory {
|
||||
public:
|
||||
ArchiveFactory_NCCH(const std::string& mount_point);
|
||||
explicit ArchiveFactory_NCCH(const std::string& mount_point);
|
||||
|
||||
std::string GetName() const override {
|
||||
return "NCCH";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue