Merge pull request #6472 from lioncash/jit-init

JitBase: Ensure JitOptions and JitState instances are consistently initialized
This commit is contained in:
Anthony 2018-03-19 13:20:40 -07:00 committed by GitHub
commit 50588034ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@ protected:
public:
// This should probably be removed from public:
JitOptions jo;
JitState js;
JitOptions jo{};
JitState js{};
JitBase();
~JitBase() override;