Skip to content

Commit

Permalink
fix(android): fix for latest runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 26, 2022
1 parent 983331b commit 104d821
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/charting/utils/Transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ export class Transformer {
if (!outputPoint) {
outputPoint = { x: 0, y: 0 };
}
const buffer = Utils.getTempArray(2);
// temp fix for latest runtimes. Should be Utils.getTempArray(2)
const buffer = Utils.getTempArray(2, false, false);
buffer[0] = x;
buffer[1] = y;

Expand Down

0 comments on commit 104d821

Please sign in to comment.