sp_arith = force sp_after_ptr_star = remove # issue 1464 # ------------------------------------------------------------------------------ # auto p = std::make_pair(r * cos(a), r * sin(a)); # type of the 'cos' token was incorrectly set to `CT_FUNC_DEF` # because of this the first '*' became a `CT_PTR_TYPE` instead of a `CT_ARITH` # type # issue 1466 # ------------------------------------------------------------------------------ # A a = {this->r * cos(b)}; # similar to 1464