Commit 5b68eced authored by Paul's avatar Paul
Browse files

Formatting

parent d7c4602a
...@@ -74,7 +74,7 @@ struct instruction ...@@ -74,7 +74,7 @@ struct instruction
bool can_eval() const; bool can_eval() const;
argument eval(bool check_eval=true) const; argument eval(bool check_eval = true) const;
void finalize(context& ctx); void finalize(context& ctx);
......
...@@ -187,7 +187,7 @@ argument instruction::eval(bool check_eval) const ...@@ -187,7 +187,7 @@ argument instruction::eval(bool check_eval) const
} }
if(is_context_free(op)) if(is_context_free(op))
{ {
if (check_eval and not this->can_eval()) if(check_eval and not this->can_eval())
return {}; return {};
std::vector<argument> args; std::vector<argument> args;
std::transform(this->inputs().begin(), std::transform(this->inputs().begin(),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment