aboutsummaryrefslogtreecommitdiff
path: root/src/exact_value.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-07-28 19:44:00 +0100
committergingerBill <bill@gingerbill.org>2018-07-28 19:44:00 +0100
commit1705ba806905bfbfd2352767ad95a0d1c0376090 (patch)
treec608e40b5c83c9310bac97366a7a4cdfa3351926 /src/exact_value.cpp
parent8d2c4a78a19774d98f5603d78ab6520f39d18bcd (diff)
Fix typos
Diffstat (limited to 'src/exact_value.cpp')
-rw-r--r--src/exact_value.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp
index e339e876b..8027b1038 100644
--- a/src/exact_value.cpp
+++ b/src/exact_value.cpp
@@ -402,7 +402,7 @@ ExactValue exact_unary_operator_value(TokenKind op, ExactValue v, i32 precision,
case ExactValue_Integer: {
GB_ASSERT(precision != 0);
ExactValue i = {ExactValue_Integer};
- bit_int_not(&i.value_integer, &v.value_integer, precision, !is_unsigned);
+ big_int_not(&i.value_integer, &v.value_integer, precision, !is_unsigned);
return i;
}
default: