mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 08:17:56 -05: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