Skip to content
Permalink
Browse files
Merge pull request #6472 from lioncash/jit-init
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.
@@ -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;

0 comments on commit 5058803

Please sign in to comment.