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: public:
// This should probably be removed from public: // This should probably be removed from public:
JitOptions jo; JitOptions jo{};
JitState js; JitState js{};
JitBase(); JitBase();
~JitBase() override; ~JitBase() override;