aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/tables/ERF.tosac
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2024-01-23 19:09:40 +0000
committerKevin Petit <kevin.petit@arm.com>2024-01-23 19:10:11 +0000
commit56d9ecef3b85e4d0cf87d25d38e1772bff1f4a1b (patch)
tree30fb4044d2c037c6d329b6f4c43a15e32ad6c829 /pseudocode/operators/tables/ERF.tosac
parentf9fcb61e143bde28fd14bcbbdb97120f5afdbfb7 (diff)
downloadspecification-56d9ecef3b85e4d0cf87d25d38e1772bff1f4a1b.tar.gz
pseudocode: replace C-style casts with static_cast
Change-Id: Ic362e5cbc607d1b7560c09326fcebcba606454ce Signed-off-by: Kevin Petit <kevin.petit@arm.com>
Diffstat (limited to 'pseudocode/operators/tables/ERF.tosac')
-rw-r--r--pseudocode/operators/tables/ERF.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/tables/ERF.tosac b/pseudocode/operators/tables/ERF.tosac
index 0ff29ff..bf94349 100644
--- a/pseudocode/operators/tables/ERF.tosac
+++ b/pseudocode/operators/tables/ERF.tosac
@@ -8,7 +8,7 @@
// by a licensing agreement from ARM Limited.
int16_t erf_reference(int16_t x) { // input x range is -256 to + 256 inclusive
- F64 v = (double)x / (double)64;
+ F64 v = static_cast<double>(x) / static_cast<double>(64);
v = erf(v);
return round_to_nearest_int(32768.0 * v);
}