Skip to content

Commit

Permalink
Remove TSRMLS_CC support from math optimizer
Browse files Browse the repository at this point in the history
See: #1865
  • Loading branch information
sergeyklay committed Oct 17, 2019
1 parent 73c30cc commit bc309d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Optimizers/MathOptimizer.php
Expand Up @@ -84,7 +84,7 @@ public function optimize(array $expression, Call $call, CompilationContext $cont

return new CompiledExpression(
'double',
'zephir_'.$this->getFunctionName().'('.$context->backend->getVariableCode($variable).' TSRMLS_CC)',
'zephir_'.$this->getFunctionName().'('.$context->backend->getVariableCode($variable).')',
$expression
);
break;
Expand Down

0 comments on commit bc309d5

Please sign in to comment.