Set variable to nullptr in ASTPrinter

This commit is contained in:
Alex Beregszaszi 2017-08-17 00:07:07 +01:00
parent 2c2ae74217
commit c94b1f8173

View File

@ -146,7 +146,7 @@ private:
std::string m_source;
ASTNode const* m_ast;
GasEstimator::ASTGasConsumption m_gasCosts;
std::ostream* m_ostream;
std::ostream* m_ostream = nullptr;
};
}