Merge pull request #4865 from lioncash/explicit

ElfReader: Make constructor explicit
This commit is contained in:
JosJuice 2017-02-08 16:29:47 +01:00 committed by GitHub
commit e0ece71b8d
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ private:
u32 entryPoint; u32 entryPoint;
public: public:
ElfReader(void* ptr); explicit ElfReader(void* ptr);
~ElfReader() {} ~ElfReader() {}
u32 Read32(int off) const { return base32[off >> 2]; } u32 Read32(int off) const { return base32[off >> 2]; }
// Quick accessors // Quick accessors