mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 01:17:47 +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
|
@ -64,7 +64,7 @@ private:
|
|||
*/
|
||||
class ExtSaveDataArchive : public SaveDataArchive {
|
||||
public:
|
||||
ExtSaveDataArchive(const std::string& mount_point) : SaveDataArchive(mount_point) {}
|
||||
explicit ExtSaveDataArchive(const std::string& mount_point) : SaveDataArchive(mount_point) {}
|
||||
|
||||
std::string GetName() const override {
|
||||
return "ExtSaveDataArchive: " + mount_point;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue