Skip to content

Commit

Permalink
Merge pull request #6472 from lioncash/jit-init
Browse files Browse the repository at this point in the history
JitBase: Ensure JitOptions and JitState instances are consistently initialized
  • Loading branch information
Helios747 committed Mar 19, 2018
2 parents 2b9ff19 + 51cfeb8 commit 5058803
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/PowerPC/JitCommon/JitBase.h
Expand Up @@ -110,8 +110,8 @@ class JitBase : public CPUCoreBase

public:
// This should probably be removed from public:
JitOptions jo;
JitState js;
JitOptions jo{};
JitState js{};

JitBase();
~JitBase() override;
Expand Down

0 comments on commit 5058803

Please sign in to comment.