We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e0f4bd commit a42da5fCopy full SHA for a42da5f
velox/type/DecimalUtil.h
@@ -200,12 +200,12 @@ class DecimalUtil {
200
uint8_t /*bRescale*/) {
201
VELOX_CHECK_NE(b, 0, "Division by zero");
202
int resultSign = 1;
203
- A unsignedDividendRescaled(a);
+ R unsignedDividendRescaled(a);
204
if (a < 0) {
205
resultSign = -1;
206
unsignedDividendRescaled *= -1;
207
}
208
- B unsignedDivisor(b);
+ R unsignedDivisor(b);
209
if (b < 0) {
210
resultSign *= -1;
211
unsignedDivisor *= -1;
0 commit comments