diff options
| author | 2018-07-24 04:47:26 -0700 | |
|---|---|---|
| committer | 2018-07-24 04:47:26 -0700 | |
| commit | 23e85b6b9f9b8f835944dc45e543206655c92ba0 (patch) | |
| tree | bdc20813bd7083fdb901bfb1e178dffc72ea2466 /src/core/loader/elf.cpp | |
| parent | Merge pull request #795 from lioncash/decl (diff) | |
| parent | core: Make converting constructors explicit where applicable (diff) | |
| download | yuzu-23e85b6b9f9b8f835944dc45e543206655c92ba0.tar.gz yuzu-23e85b6b9f9b8f835944dc45e543206655c92ba0.tar.xz yuzu-23e85b6b9f9b8f835944dc45e543206655c92ba0.zip | |
Merge pull request #797 from lioncash/explicit
core: Make converting constructors explicit where applicable
Diffstat (limited to 'src/core/loader/elf.cpp')
| -rw-r--r-- | src/core/loader/elf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp index 4bfd5f536..352938dcb 100644 --- a/src/core/loader/elf.cpp +++ b/src/core/loader/elf.cpp | |||
| @@ -190,7 +190,7 @@ private: | |||
| 190 | u32 entryPoint; | 190 | u32 entryPoint; |
| 191 | 191 | ||
| 192 | public: | 192 | public: |
| 193 | ElfReader(void* ptr); | 193 | explicit ElfReader(void* ptr); |
| 194 | 194 | ||
| 195 | u32 Read32(int off) const { | 195 | u32 Read32(int off) const { |
| 196 | return base32[off >> 2]; | 196 | return base32[off >> 2]; |