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

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;