mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-04-10 05:08:50 -04:00
file_sys: Make a few single-argument constructors explicit
Prevents implicit conversions.
This commit is contained in:
@@ -18,7 +18,7 @@ namespace FileSys {
|
||||
/// Archive backend for general save data archive type (SaveData and SystemSaveData)
|
||||
class SaveDataArchive : public ArchiveBackend {
|
||||
public:
|
||||
SaveDataArchive(const std::string& mount_point_) : mount_point(mount_point_) {}
|
||||
explicit SaveDataArchive(const std::string& mount_point_) : mount_point(mount_point_) {}
|
||||
|
||||
std::string GetName() const override {
|
||||
return "SaveDataArchive: " + mount_point;
|
||||
|
||||
Reference in New Issue
Block a user