mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Boot: Make BootExecutableReader constructors explicit
This commit is contained in:
parent
56109984bb
commit
927a4a16f8
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ private:
|
|||
class BootExecutableReader
|
||||
{
|
||||
public:
|
||||
BootExecutableReader(const std::string& file_name);
|
||||
BootExecutableReader(const std::vector<u8>& buffer);
|
||||
explicit BootExecutableReader(const std::string& file_name);
|
||||
explicit BootExecutableReader(const std::vector<u8>& buffer);
|
||||
virtual ~BootExecutableReader();
|
||||
|
||||
virtual u32 GetEntryPoint() const = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue