Fix uninitialized member warnings

Based on PVS Studio report
This commit is contained in:
Marek Roszko
2021-05-30 20:01:01 -04:00
parent 67f0bbc6d7
commit 382dca4e6f
10 changed files with 33 additions and 17 deletions
+6 -2
View File
@@ -1073,11 +1073,15 @@ PCB_EXPR_COMPILER::PCB_EXPR_COMPILER()
}
PCB_EXPR_EVALUATOR::PCB_EXPR_EVALUATOR()
PCB_EXPR_EVALUATOR::PCB_EXPR_EVALUATOR() :
m_result( 0 ),
m_compiler(),
m_ucode(),
m_errorStatus()
{
m_result = 0;
}
PCB_EXPR_EVALUATOR::~PCB_EXPR_EVALUATOR()
{
}