diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/processor/postfix_evaluator-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<ValueType>::EvaluateInternal( break; case BINARY_OP_ALIGN: result = - operand1 & (reinterpret_cast<ValueType>(-1) ^ (operand2 - 1)); + operand1 & (static_cast<ValueType>(-1) ^ (operand2 - 1)); break; case BINARY_OP_NONE: // This will not happen, but compilers will want a default or |