diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2018-03-19 13:20:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-19 13:20:40 -0700 |
| commit | 50588034bace2ae356dbcbaae4ac1113e576a5c1 (patch) | |
| tree | dc3313fc60d353fbd76465c4f60df6c8b0b4eeba /Source/Core | |
| parent | 2b9ff191387c8db0c3ac64ac31b9e5d0f22d8afb (diff) | |
| parent | 51cfeb8c7d809654e297c9899ac6019db16a8f9e (diff) | |
Merge pull request #6472 from lioncash/jit-init
JitBase: Ensure JitOptions and JitState instances are consistently initialized
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/JitCommon/JitBase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.h b/Source/Core/Core/PowerPC/JitCommon/JitBase.h index d0cbf16879..0579e0a809 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.h @@ -110,8 +110,8 @@ protected: public: // This should probably be removed from public: - JitOptions jo; - JitState js; + JitOptions jo{}; + JitState js{}; JitBase(); ~JitBase() override; |
