checkExpr method

void checkExpr(
  1. String func
)

Implementation

void checkExpr( String func ){
	if(
		_checkExpr( _info[_curIndex]._expr1, func ) ||
		_checkExpr( _info[_curIndex]._expr2, func )
	){
		// 計算結果保持バッファを解放
		delAns();
	}
}