Cosmetics: remove empty list of parameters for lambda functions

master
Sébastien Villemot 2023-10-19 09:55:59 -04:00
parent f78c428d99
commit e6f38e724c
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 2 deletions

View File

@ -1106,7 +1106,7 @@ VariableNode::writeOutput(ostream &output, ExprNodeOutputType output_type,
return;
}
auto juliaTimeDataFrameHelper = [&]()
auto juliaTimeDataFrameHelper = [&]
{
if (lag != 0)
output << "lag(";
@ -9061,7 +9061,7 @@ ExprNode::matchParamTimesTargetMinusVariable(int symb_id) const
auto lhs_level = dynamic_cast<const VariableNode *>(bminus->arg2);
auto target = dynamic_cast<const VariableNode *>(bminus->arg1);
auto check_target = [&]()
auto check_target = [&]
{
if (target->get_type() != SymbolType::endogenous
&& target->get_type() != SymbolType::exogenous)