mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Boot: Make BootExecutableReader constructors explicit
This commit is contained in:
@ -109,8 +109,8 @@ private:
|
|||||||
class BootExecutableReader
|
class BootExecutableReader
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BootExecutableReader(const std::string& file_name);
|
explicit BootExecutableReader(const std::string& file_name);
|
||||||
BootExecutableReader(const std::vector<u8>& buffer);
|
explicit BootExecutableReader(const std::vector<u8>& buffer);
|
||||||
virtual ~BootExecutableReader();
|
virtual ~BootExecutableReader();
|
||||||
|
|
||||||
virtual u32 GetEntryPoint() const = 0;
|
virtual u32 GetEntryPoint() const = 0;
|
||||||
|
Reference in New Issue
Block a user