diff --git a/src/processor/postfix_evaluator-inl.h b/src/processor/postfix_evaluator-inl.h index 22faf7b2..332ba1af 100644 --- a/src/processor/postfix_evaluator-inl.h +++ b/src/processor/postfix_evaluator-inl.h @@ -131,7 +131,7 @@ bool PostfixEvaluator::EvaluateInternal( break; case BINARY_OP_ALIGN: result = - operand1 & (reinterpret_cast(-1) ^ (operand2 - 1)); + operand1 & (static_cast(-1) ^ (operand2 - 1)); break; case BINARY_OP_NONE: // This will not happen, but compilers will want a default or